In this post I’ll explain how to configure the Waffle Spring-Security Negotiate filter to do single-sign-on on Windows and touch on how much more elegant the spring-based filter configuration is versus, for example, a generic servlet filter.
Download
Download Waffle. The zip contains Waffle.chm with the latest version of this tutorial.
Configure Your Application
Configure Spring-Security
We’ll assume that Spring-Security is configured via web.xml with a filter chain and a Spring ContextLoaderListener. The Waffle beans configuration will be added to waffle-filter.xml.
Package Files
You need waffle-jna.jar, jna.jar, platform.jar and commons-logging-1.1.1.jar from the Waffle distribution as well as Spring and Spring-security JARs. Those should be placed in your application’s classpath (eg. packaged in WAR). If you’re using Tomcat, for demo purposes you can put these files in Tomcat’s lib.
Windows Authentication Provider
Declare a Windows Authentication provider. This is the link between Waffle and the operating system.
Waffle Security Filter Providers
Declare a collection of Waffle security filter providers that implement various authentication protocols.
If you’re not very familiar with Spring, you will start loving it right here. We’re adding two providers to a collection in a configuration file. This means that we don’t need to have another configuration mechanism than this one to add or remove one. We don’t need to do this in code either. Each class instance (bean) is also configurable individually – we can, for example, configure the name of the realm for Basic authentication.
It’s more verbose, but it’s much more flexible.
Add a Waffle Security Filter
Add the Waffle security filter and entry point to the sec:http configuration section. The filter will be placed before the Basic authentication filter that ships with Spring-Security. The filter uses the collection of authentication filter providers defined above to perform authentication.
Spring-Security Authentication Manager
Define a required default Spring-Security authentication manager. We’re not going to use it in this setup because the filter takes care of authentication and the user doesn’t have a way to supply, for example, a username and password.
Note that Waffle does include a Spring-based authentication manager for form-based authentication or non-web-based scenarios.
The Filter Itself
Finally, define the Spring-Security Waffle filter that uses the collection of security filter providers to perform authentication.
Demo Application
A demo application with the complete configuration file can be found in the Waffle distribution in the Samples\waffle-spring-filter directory. Copy the entire directory into Tomcat’s webapps directory and navigate to https://localhost:8080/waffle-spring-filter. You should be automatically logged-in under your current Windows account.