In fact, sessions are maintained by default, so you will get sessions even
by doing nothing.
Scott Nichol
- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, September 19, 2002 9:59 AM
Subject: RE: Using sessions
> One way to do it
One way to do it is to have your client object ask the call object to do it
as follows:
if(doSession)
{
shc = new SOAPHTTPConnection ();
shc.setMaintainSession (true);
setSOAPTransport (shc);
}
I assume there are other ways to do it.
-Origin