<?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 PROC HTTP...dude, where's my output? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/PROC-HTTP-dude-where-s-my-output/m-p/619653#M77114</link>
    <description>&lt;P&gt;Running 9.4 M3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm reading through this intro to PROC HTTP,&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2019/3232-2019.pdf" target="_blank" rel="noopener"&gt;https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2019/3232-2019.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My goal is to use it, among other things, to validate URLs we create with newly published data and tech docs, to ensure none of them are "dead".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The initial code is running successfully with no errors, alas I don't know how to see the output the paper is referencing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Woe is me. Merciful SAS lords, please elucidate the error of my ways.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sas.PNG" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/35583i9265EFCECEF2ED26/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sas.PNG" alt="sas.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 23 Jan 2020 19:54:45 GMT</pubDate>
    <dc:creator>deltron</dc:creator>
    <dc:date>2020-01-23T19:54:45Z</dc:date>
    <item>
      <title>PROC HTTP...dude, where's my output?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-HTTP-dude-where-s-my-output/m-p/619653#M77114</link>
      <description>&lt;P&gt;Running 9.4 M3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm reading through this intro to PROC HTTP,&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2019/3232-2019.pdf" target="_blank" rel="noopener"&gt;https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2019/3232-2019.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My goal is to use it, among other things, to validate URLs we create with newly published data and tech docs, to ensure none of them are "dead".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The initial code is running successfully with no errors, alas I don't know how to see the output the paper is referencing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Woe is me. Merciful SAS lords, please elucidate the error of my ways.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sas.PNG" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/35583i9265EFCECEF2ED26/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sas.PNG" alt="sas.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2020 19:54:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-HTTP-dude-where-s-my-output/m-p/619653#M77114</guid>
      <dc:creator>deltron</dc:creator>
      <dc:date>2020-01-23T19:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: PROC HTTP...dude, where's my output?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-HTTP-dude-where-s-my-output/m-p/619662#M77115</link>
      <description>&lt;P&gt;Well, since you defined both filenames as TEMP, you can see from your log that SAS saved them in its temporary work-space folder. If you navigate through File Explorer (and you the option of hidden files set to Visible, in order to see the AppData folder), you will see those files, but they will be named something like&amp;nbsp;#LN00041, which won't be very useful to you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Drop the passive approach, and try the active approach -- tell SAS where you want those files to be stored, and give them a useful name by changing your filename statements to something like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename hdrs 'c:\temp\headers.txt';&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 23 Jan 2020 20:23:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-HTTP-dude-where-s-my-output/m-p/619662#M77115</guid>
      <dc:creator>bnawrocki</dc:creator>
      <dc:date>2020-01-23T20:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: PROC HTTP...dude, where's my output?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-HTTP-dude-where-s-my-output/m-p/619664#M77116</link>
      <description>&lt;P&gt;Huh?&lt;/P&gt;
&lt;P&gt;The log is telling you where to look. What kind of file did you write to HDRS? If nothing else take a look at it in by dumping it (or some of it) to the SAS log.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  infile hdrs obs=10;
  input;
  put _infile_;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you want to know where it is ask SAS to tell you:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let filename=%sysfunc(pathname(hdrs));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 23 Jan 2020 20:37:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-HTTP-dude-where-s-my-output/m-p/619664#M77116</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-01-23T20:37:26Z</dc:date>
    </item>
  </channel>
</rss>

