I am creating a web service using IBM JAX-RPC / JAX-WS. I am trying to implement wsse security, but I am not able to determine the exact steps to achieve the same. I will use RSA 7.5 and Websphere 7 for this web service.
Reading the documentation, I was completely lost, as I am new to this and have no idea about the same.
Can someone point me to the steps to implement wsse security for a web service?
I have been struggling with this since the last few days.
EDIT
I want authentication to be done in the header, it should look something like this:
<header> <authenticationInfo> <userID></userID> <password></password> </authenticationInfo> </header>
Besides using a handler and changing the contents of the header, is there any other way to achieve the same?
source share