BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
RobP
Quartz | Level 8

I have a simple "Hello World" stored process, and I can successfully call it from my browser and get the results directly by passing in my user/pass credentials as part of the URL request (so the login page never shows).

 

I'm trying to replicate the above behaviour by passing the same URL to curl, but I keep getting the login screen as a result.

 

From the browser, the URL looks like:

 

http://myserver.com:7980/SASStoredProcess/do?
_program=my_program&_username=my_user_name&_password=%7BSAS002%7DEFFF...

 

From curl (running from a Linux64 bash shell), I've tried a multitude of parameters etc, but my latest version is:

 

curl -v -L -k -d "_program=my_program&_username=my_user_name&_password=%7BSAS002%7DEFFF..."  
http://myserver.com:7980/SASStoredProcess/do

As I mentioned, it results in the login screen.  I've also tried the /do1 request with the same results. 

 

I believe I have everything configured correctly in SAS Management Console, as the request works fine from the browser URL.  Where am I going wrong?

1 ACCEPTED SOLUTION

Accepted Solutions
AllanBowe
Barite | Level 11

You're just missing the options to read / write cookies (this is where the session token is stored).  

 

Try the following:

 

curl -v -L -k -c cookiefile -b cookiefile \
-d "_program=my_program&_username=my_user_name&_password=%7BSAS002%7DEFFF..." \
http://myserver.com:7980/SASStoredProcess/do

 

/Allan
SAS Challenges - SASensei
MacroCore library for app developers
SAS networking events (BeLux, Germany, UK&I)

Data Workflows, Data Contracts, Data Lineage, Drag & drop excel EUCs to SAS 9 & Viya - Data Controller
DevOps and AppDev on SAS 9 / Viya / Base SAS - SASjs

View solution in original post

2 REPLIES 2
AllanBowe
Barite | Level 11

You're just missing the options to read / write cookies (this is where the session token is stored).  

 

Try the following:

 

curl -v -L -k -c cookiefile -b cookiefile \
-d "_program=my_program&_username=my_user_name&_password=%7BSAS002%7DEFFF..." \
http://myserver.com:7980/SASStoredProcess/do

 

/Allan
SAS Challenges - SASensei
MacroCore library for app developers
SAS networking events (BeLux, Germany, UK&I)

Data Workflows, Data Contracts, Data Lineage, Drag & drop excel EUCs to SAS 9 & Viya - Data Controller
DevOps and AppDev on SAS 9 / Viya / Base SAS - SASjs
RobP
Quartz | Level 8

Yes! That was it... thank you so much!

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

Discussion stats
  • 2 replies
  • 1244 views
  • 4 likes
  • 2 in conversation