Ok, I've determined that CURL is the best way to solve this issue and have installed it on my machine. Now I'm trying to run some test code. There are no errors in my log, see below. However, I can't seem to generate the data that I want. It appears that curl is working and a text file is created. Except the text file is blank. Does anyone have any suggestions on what I'm doing wrong? Thanks so much, Bill 87 dm 'clear log'; 88 89 %let loc=https://www.yahoo.com/; 90 data _null_; 91 infile %sysfunc(quote(curl -k &loc. > C:\Users\bjones\SAS\Data\data_temp.txt)) 91 ! pipe ; 92 input ; 93 put _infile_; 94 run; NOTE: The infile "curl -k https://www.yahoo.com/ > C:\Users\bjones\SAS\Data\data_temp.txt" is: Unnamed Pipe Access Device, PROCESS=curl -k https://www.yahoo.com/ > C:\Users\bjones\SAS\Data\data_temp.txt, RECFM=V,LRECL=256 NOTE: 0 records were read from the infile "curl -k https://www.yahoo.com/ > C:\Users\bjones\SAS\Data\data_temp.txt". NOTE: DATA statement used (Total process time): real time 0.16 seconds cpu time 0.01 seconds
... View more