A question on session management with ZSI webservices

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jupiter1199
    New Member
    • Oct 2008
    • 1

    A question on session management with ZSI webservices

    Hi:

    I have a webservice running on Apache-Axis / Java --- XService.

    I am using a .NET client application for accessing the services on the XService. After logging in for the first time, the next time client has to access the XService, it has to set cookies. This is the code which I use for the same (which works):
    Code:
    System.Net.CookieContainer cookies = new System.Net.CookieContainer();
    XService.XServiceService service = new XService.XServiceService();
    service.CookieContainer = cookies;
    I am now writing the same client in Python using ZSI Webservices api. Can any one tell me / point me to the correct resources as to how this is done?

    Thanks
    jupiter1199
    Last edited by numberwhun; Oct 21 '08, 01:00 PM. Reason: Please use code tags
Working...