<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: sas http error (connection has timed out...) in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/sas-http-error-connection-has-timed-out/m-p/132185#M26950</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the same issue, did you find a solution? I can open the URL in a browser (it is SSL with username and password).&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Stig&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Nov 2013 12:38:21 GMT</pubDate>
    <dc:creator>Stig_Eide</dc:creator>
    <dc:date>2013-11-22T12:38:21Z</dc:date>
    <item>
      <title>sas http error (connection has timed out...)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-http-error-connection-has-timed-out/m-p/132184#M26949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to use filename and connect to a website.&lt;/P&gt;&lt;P&gt;I've tried the following two code samples and received the same error:&lt;/P&gt;&lt;P&gt;"ERROR: The connection has timed out.."&lt;/P&gt;&lt;P&gt;Does anyone know how I fix this?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;filename foo url&lt;BR /&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://ichart.finance.yahoo.com/table.csv?s=HIT&amp;amp;a=11&amp;amp;b=29&amp;amp;c=2004&amp;amp;d=01&amp;amp;e=1&amp;amp;f=2005&amp;amp;g=d&amp;amp;ignore=.csv"&gt;http://ichart.finance.yahoo.com/table.csv?s=HIT&amp;amp;a=11&amp;amp;b=29&amp;amp;c=2004&amp;amp;d=01&amp;amp;e=1&amp;amp;f=2005&amp;amp;g=d&amp;amp;ignore=.csv&lt;/A&gt;&lt;SPAN&gt;' debug;&lt;/SPAN&gt;&lt;BR /&gt;data stock_prices;&lt;BR /&gt;length Date $9;&lt;BR /&gt;infile foo firstobs=2 delimiter=',';&lt;BR /&gt;input Date Open High Low Close Volume Adjusted_Close;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;filename http socket "support.sas.com:80" termstr=LF lrecl=8192;&lt;BR /&gt;data _null_;&lt;BR /&gt;infile http length=len;&lt;BR /&gt;file http;&lt;BR /&gt;if _n_=1 then put&lt;BR /&gt;'GET / HTTP/1.1' /&lt;BR /&gt;'Host: support.sas.com' /&lt;BR /&gt;'Connection: close' / ;&lt;BR /&gt;input;&lt;BR /&gt;file log;&lt;BR /&gt;put _infile_;&lt;BR /&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 May 2013 22:14:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-http-error-connection-has-timed-out/m-p/132184#M26949</guid>
      <dc:creator>gzr2mz39</dc:creator>
      <dc:date>2013-05-07T22:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: sas http error (connection has timed out...)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-http-error-connection-has-timed-out/m-p/132185#M26950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the same issue, did you find a solution? I can open the URL in a browser (it is SSL with username and password).&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Stig&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Nov 2013 12:38:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-http-error-connection-has-timed-out/m-p/132185#M26950</guid>
      <dc:creator>Stig_Eide</dc:creator>
      <dc:date>2013-11-22T12:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: sas http error (connection has timed out...)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-http-error-connection-has-timed-out/m-p/132186#M26951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might need to add code for a proxy.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;A name="a000289658"&gt;&lt;/A&gt;&lt;SPAN&gt;filename foo url '&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.a.com/test.dat"&gt;http://www.a.com/test.dat&lt;/A&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; proxy='&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.gt.sas.com';"&gt;http://www.gt.sas.com';&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Nov 2013 22:15:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-http-error-connection-has-timed-out/m-p/132186#M26951</guid>
      <dc:creator>gzr2mz39</dc:creator>
      <dc:date>2013-11-22T22:15:14Z</dc:date>
    </item>
  </channel>
</rss>

