Difference between revisions of "Windows Authentication"
Jump to navigation
Jump to search
old>Admin |
old>Admin |
||
Line 13: | Line 13: | ||
=== Installation part 2 === | === Installation part 2 === | ||
Install the SPNEGO filter on the application | |||
# Copy filter setting from the guide to '''<TempusServaApplication>\WEB-INF\web.xml''' | |||
# Change the filter mapping from *.jsp to the login page | |||
<filter-mapping> | |||
<filter-name>SpnegoHttpFilter</filter-name> | |||
<url-pattern>/login</url-pattern> | |||
</filter-mapping> | |||
Configure TempusServa to accept SSO by changing system configuration | Configure TempusServa to accept SSO by changing system configuration |
Revision as of 00:42, 11 December 2014
Understanding AD integration
Recommended: SPNEGO filter
Installation part 1
- Run pre flight checklist
- Run installation
Troubleshooting
- Check Tomcat is running in the same context as the domain user
- Ensure only one SPN exists (with fully qualified name)
Installation part 2
Install the SPNEGO filter on the application
- Copy filter setting from the guide to <TempusServaApplication>\WEB-INF\web.xml
- Change the filter mapping from *.jsp to the login page
<filter-mapping> <filter-name>SpnegoHttpFilter</filter-name> <url-pattern>/login</url-pattern> </filter-mapping>
Configure TempusServa to accept SSO by changing system configuration
ssoSpnegoAuthenticate = true
Other methods
- Waffle
- Tomcat 7 native SPNEGO