Re: Using sessions

2002-09-19 Thread Scott Nichol
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

RE: Using sessions

2002-09-19 Thread armstpat
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