[gatein-issues] [JBoss JIRA] Created: (GTNPORTAL-2130) SPNEGOFilter should not be used in web.xml example
Marek Posolda (JIRA)
jira-events at lists.jboss.org
Tue Sep 27 10:04:26 EDT 2011
SPNEGOFilter should not be used in web.xml example
--------------------------------------------------
Key: GTNPORTAL-2130
URL: https://issues.jboss.org/browse/GTNPORTAL-2130
Project: GateIn Portal
Issue Type: Bug
Security Level: Public (Everyone can see)
Reporter: Marek Posolda
SPNEGOFilter is no longer needed to be in web.xml . It should not be here at all because class SPNEGOFilter has been removed . See GTNPORTAL-1120 for details .
In section http://docs.redhat.com/docs/en-US/JBoss_Enterprise_Portal_Platform/5.1/html/Reference_Guide/sect-Reference_Guide-SSO_Single_Sign_On-SPNEGO_Simple_and_Protected_GSSAPI_Negotiation_Mechanism.html - point 6, web.xml should look like this
<filter>
<filter-name>LoginRedirectFilter</filter-name>
<filter-class>org.gatein.sso.agent.filter.LoginRedirectFilter</filter-class>
<init-param>
<!-- This should point to your SSO authentication server -->
<param-name>LOGIN_URL</param-name>
<param-value>/portal/private/classic</param-value>
</filter>
<filter-mapping>
<filter-name>LoginRedirectFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the gatein-issues
mailing list