Hi folks. I'm using Axis 1.1 client stub generated by WSDL2Java ant task. I'm pretty happy about it, but there is one problem. My web application serves for many users to log in and perform some actions on remote SOAP service, and I would like this client stub to be singleton service exposing these remote actions. Problem is that each user of my application has (as normal) different username/password, that is mapped to SOAP username/passwords sent inside SOAP request by this client stub, but since this username/password is suposed to be set on client stub before calling remote actions (thus SOAP login is sent during each forecoming requests), that practicaly forces me to use separate stubs for each user of my webapp, and not one mutual singleton stub per application as desired?
Has anyone experiences similar requirement, and solved it somehow ? Regards, Vjeran