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):
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
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;
Thanks
jupiter1199