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 MySvc.MyService();
    ws.sendToken(token);
    int receivedToken = ws.getToken();

Thanks.
Naresh Bhatia

Reply via email to