We have seen 'A Simple Web Service Using Spring-WS' in the previous post.
Now we need to secure the service from unauthorized access. We are going to apply HTTP Digest Authentication[1][2] for this.
Note that we are not implementing Message Signing or Encryption here. We will only ensure 'Authentication' using Spring XwsSecurityInterceptor[3], so that only authenticated users can access the add service we defined in the previous post.
First modify the ws-servlet.xml file and add the following bean definitions:
Add a Role enumeration to define User's role:
Add the domain(/model/entity) class:
Now add the dao class (with dummy user population):
We need to create a CustomUserDetailsService which implements UserDetailsService
This is how the project-structure should look like (underlined items are newly added over the project in the previous post):
The project can be downloaded using git from spring-ws-test project (secured_user_auth_digest branch):
git clone https://github.com/tariqmnasim/spring-ws-test.git -b secured_user_auth_digest
References:
[1] HTTP Authentication: Basic and Digest Access Authentication
[2] Wikipedia: Digest access Authentication
[3] Securing your web services using Spring-WS
Now we need to secure the service from unauthorized access. We are going to apply HTTP Digest Authentication[1][2] for this.
Note that we are not implementing Message Signing or Encryption here. We will only ensure 'Authentication' using Spring XwsSecurityInterceptor[3], so that only authenticated users can access the add service we defined in the previous post.
First modify the ws-servlet.xml file and add the following bean definitions:
- XwsSecurityInterceptor bean (inside the <sws:interceptors/> tag),
- callBackHandlerDigest bean definition,
- userDetailsService
Add a Role enumeration to define User's role:
Add the domain(/model/entity) class:
Now add the dao class (with dummy user population):
We need to create a CustomUserDetailsService which implements UserDetailsService
This is how the project-structure should look like (underlined items are newly added over the project in the previous post):
The project can be downloaded using git from spring-ws-test project (secured_user_auth_digest branch):
git clone https://github.com/tariqmnasim/spring-ws-test.git -b secured_user_auth_digest
References:
[1] HTTP Authentication: Basic and Digest Access Authentication
[2] Wikipedia: Digest access Authentication
[3] Securing your web services using Spring-WS