BookmarkSubscribeRSS Feed
data_null__
Jade | Level 19

I can run this and it works.

data _null_;
   filevar=
'http://support.sas.com/techsup';
  
do _n_ = 1 to 12;
     
infile dummy url filevar=filevar length=len eof=eof debug;
      input;
     
put _infile_;
     
end
eof:
  
stop;
  
run;

I want to run this but it gives me the SSL error;  Of course since I don't know what I'm doing I can't figure what I need to change or add etc.  I think it is something to do with a Google account and I tried some USER= and PASS= bits but that hasn't got me any further.  I've also searched support.sas.com and here for similar but nothing (that I understand) so far.  Anyone know how to make this work? 


data _null_;
  
infile cards;
  
length filevar $80;
  
input filevar;
   infile dummy url filevar=filevar eof=eof lrecl=1024 debug;
   do while(1);
      input;
     
put _infile_;
     
end;
eof:
stop;
  
cards;
http://translate.google.com/?langpair=fr|en&q=bonjour+madame
;;;;
   run;


My OS is UNIX SAS 9.3
2 REPLIES 2
Ksharp
Super User

John,

Yeah. SSL means It is a encrypted URL , You can't use it in Filename + URL .

Check proc http ;  to import such URL .

at support.sas.com

at blogs.sas.com

Xia Keshan

zencosap
Fluorite | Level 6
you probably has some expired trusted certificate chains in your PEM file that you are pointing to with the -SSLCALISTLOC option in your sasv9.cfg or sasv9_local.cfg. Have your security team regenerate the PEM file for you and put it on the compute tier.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 5814 views
  • 0 likes
  • 3 in conversation