If you configure third-party authentication with products
such as CA SiteMinder, and use the JavaScript Objects Notation (JSON)
and REST Web services, edit the
web.xml
file.
This file is located in the
SAS-Installation-Directory \SASWebInfrastructurePlatform\9.3\Configurable\wars\sas.wip.services9.3ear\sas.biws.war\WEB-INF
directory.
Remove or comment out the following configuration section in the
web.xml
file
(within the SAS BI Web Services WAR file):
<filter>
<filter-name>SecurityFilter</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy
</filter-class>
<init-param>
<param-name>targetBeanName</param-name>
<param-value>basicAuthFilter</param-value>
</init-param>
<init-param>
<param-name>targetFilterLifecycle</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>SecurityFilter</filter-name>
<url-pattern>/rest/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>SecurityFilter</filter-name>
<url-pattern>/json/*</url-pattern>
</filter-mapping>