RE: Enabling .NET client to maintain session with Axis web service

2002-07-15 Thread Barry Levinson
: Naresh Bhatia [mailto:[EMAIL PROTECTED]] Sent: Friday, July 12, 2002 6:14 PM To: '[EMAIL PROTECTED]' Subject: Enabling .NET client to maintain session with Axis web service Is there a way to ask a .NET client to maintain a session with a web service developed in Axis. Here's my .NET code that needs

Enabling .NET client to maintain session with Axis web service

2002-07-12 Thread Naresh Bhatia
Title: Enabling .NET client to maintain session with Axis web service Is there a way to ask a .NET client to maintain a session with a web service developed in Axis. Here's my .NET code that needs to maintain a session between the calls sendToken() and getToken(). MySvc.MyService ws = new

Re: Enabling .NET client to maintain session with Axis web service

2002-07-12 Thread Les Gerads
Title: Enabling .NET client to maintain session with Axis web service You can use a IHeaderHandler and overrite the methods to capture the session ID and write it out in the SOAP header; that part is oulined in the msdn docs. You would also need set up a SimpleSessionHandler on the service