Hi folks, I'm somewhat new to web services and particularly WSS4J and I'm having a problem with an implementation. It's probably best if I first explain what I'm attempting to do:
A user will supply a username and password, and this will be authenticated on the web service server. However once authenticated I want the web service to supply what is essentially a 'session' token, which the user can use to access the services. The 'session' token will either be sent as a function parameter in each request, or maybe as the username in the
SOAP header (without an accompanying password).
My problem is that WSS4J Callback class wants to authenticate each individual request with a username/password, whereas I only want this to occur once at the beginning of a session. At least as far as I can tell.
Is there any way I can implement the above scenario using WSS4J?