Setting up Public Access in SAS Stored Processes (9.1.3)

0

What if you would like everyone to be able to run SAS Stored Processes without experiencing the authentication (log-in) screen?

1. You need to change the /SASStoredProcess/Params.config and a web.xml file for SAS 9.1.3. Change the following line

_username=$servlet.user.name
TO:
_username=<Your Shared Account Name>
AND THEN ADD the following line:
_password=<Your encoded password>

2. In the /SASStoredProcess\WEB-INF\Web-XML, COMMENT out the following lines:
<param-name>AuthMechanism</param-name> , <param-value>host</param-value>

Restart the web application (such as Tomcat) and you shouldn’t have to login anymore.

Share

About Author

Angela Hall

Senior Technical Architect

Angela offers tips on using the SAS Business Intelligence solutions. She manages a team of SAS Fraud Framework implementers within the SAS Solutions On-Demand organization. Angela also has co-written two books, 'Building BI using SAS, Content Development Examples' & 'The 50 Keys to Learning SAS Stored Processes'.

Comments are closed.

Back to Top