I have the following problem in maintaining the session. I have a webservice where the user need to login first and if the login is successfull then the server sends a sessionid back to the user. Then the client will perform the lookup and update operations.
My problem is that, the client is a web client and once the user logs in, he will do the update and lookup operations whenever he like and meantime he will do his usual work on our website. So once he want to update or lookup, he need to send the sessionid along with the request. But how can I do this? I guess the sessionid will be maintained only within one client call, and if I create a new client object and request using this, it will be treated as a new client. How can make that the client uses the same service object (means same stub initially used for logon). Thanks, kiran pathuru
