I'm a newbie too, but apparently not quite as new -- I've got the answer!
 
Deploy your service with session scope.  In the deploy.wsdd
 
<service name=...>
  ...
 <parameter name="scope" value="session"/>
 ...
</service>
 
In the client,
 ServiceLocator service = new ServiceLocator();
 service.setMaintainSession(true);
 
See the javadocs for setMaintainSession() -- you can do it on the service or on the soap binding stub, or probably other places if you don't use the WSDL2Java generated client code.
-----Original Message-----
From: Pramod Gurunath [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 19, 2003 7:04 PM
To: [EMAIL PROTECTED]
Subject: newbie question

Hi,
 
How can we maintain persistent objects in Axis? meaning, if a user requests a service, is there anyway that I can maintain information about the user (using objects on the service-provider side) , after fulfilling the user request?
 
any pointers is appreciated.
 
Thanks.

Reply via email to