Hi all,
I'm using Spring with Axis to make some webservice access in a web app.
The JaxRpcPortProxyFactoryBean is a singleton so returns always the same object.
As a webapp is multi client (multi session),
I wonder how to get a different proxy (stub) instance for each client session, in the case of a webservice has to maintain a session between calls ?
Also, when I set singleton to false on JaxRpcPortProxyFactoryBean, Spring throws an error "FactoryBean must be defined as singleton" but in this case I want the factory to instanciate an object each time no matter the factory itself is ingleton or not...
thanks


Reply With Quote