Thursday, October 29, 2009

Setting up Public Access in SAS Stored Processes (9.1.3)

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=&ltYour Shared Account Name&gt
AND THEN ADD the following line:
_password=&ltYour encoded password&gt

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.

<submitted Zencos Consulting>

0 comments: