Re: Asunto: Re: session

2004-02-05 Thread Scott Nichol
specific mail lists. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 04, 2004 2:14 PM Subject: Asunto: Re: session Scott, I had thought something like the client id as a parameter, but then I though in the http session (and I sta

Re: session

2004-02-04 Thread Scott Nichol
gt; Tizo > > > > >-- Mensaje original -- > >Reply-To: [EMAIL PROTECTED] > >Date: Wed, 4 Feb 2004 07:56:43 -0800 (PST) > >From: Scott Nichol <[EMAIL PROTECTED]> > >Subject: Re: session > >To: [EMAIL PROTECTED] > > > > > >The answer depe

Asunto: Re: session

2004-02-04 Thread tizo
Thanks a lot, Tizo >-- Mensaje original -- >Reply-To: [EMAIL PROTECTED] >Date: Wed, 4 Feb 2004 07:56:43 -0800 (PST) >From: Scott Nichol <[EMAIL PROTECTED]> >Subject: Re: session >To: [EMAIL PROTECTED] > > >The answer depends in part on what you mean by &q

Re: session

2004-02-04 Thread Scott Nichol
The answer depends in part on what you mean by "an id of who is invoking the call." Many services are implemented with a client id as a parameter to every method call. Google does this. You could design your services similarly. If you specifically want to use sessions based on HTTP cookies, you

RE: Session Timeouts

2002-05-20 Thread Phillip Urrea
2002 14:45To: [EMAIL PROTECTED]Subject: RE: Session Timeouts Phillip- What type of application is this? If servlet based, session timeout and cleanup activities are controlled by the HttpSession, HttpSessionBindingEvent, and HttpSessionBindingListener classes of the java.servlet.http package.

RE: Session Timeouts

2002-05-20 Thread Erich Izdepski
Phillip- What type of application is this? If servlet based, session timeout and cleanup activities are controlled by the HttpSession, HttpSessionBindingEvent, and HttpSessionBindingListener classes of the java.servlet.http package.   If there is more to these problem, these provide the de

RE: session maintance

2001-11-01 Thread Oleg Timofeyev
lto:[EMAIL PROTECTED]] Sent: Thursday, November 01, 2001 12:47 AM To: [EMAIL PROTECTED] Subject: RE: session maintance Hi Oleg, this is a good example... thx a lot. But how did you find out that you can put the 3. parameter in the method? like you wrote. Is there a documentation or did you find

RE: session maintance

2001-10-31 Thread Ong Boon Pang
t;methods, there will be trouble. > >Sincerely, >Oleg > >-Original Message- >From: Ong Boon Pang [mailto:[EMAIL PROTECTED]] >Sent: Tuesday, October 30, 2001 7:26 PM >To: [EMAIL PROTECTED] >Subject: Re: session maintance > > >Hi Oleg, > > >For som

RE: session maintance

2001-10-31 Thread Oleg Timofeyev
You need to specify SOAPContext in the list of arguments. I took an example from http://www-106.ibm.com/developerworks/library/ws-peer2/ and added session control to it. SERVER SIDE METHOD public float getRate( org.apache.soap.rpc.SOAPContext cnt, String country1, String country2 ) throws SOAPEx

RE: session maintance

2001-10-31 Thread Daniel . Wolff
Hi >org.apache.soap.rpc.SOAPContext cnt = call.getSOAPContext(); > >HttpSession session = (HttpSession) >cnt.getProperty(Constants.BAG_HTTPSESSION); >session.getID(); > but I in my Context ther are no Properties. I get an NullPointerExeption when I want to pritn aut the session id I set up then

RE: session maintance

2001-10-31 Thread Moran, Neal
: Re: session maintance Hi Oleg, have you set up the scope of the deployed service to session. I have nearly the same question. >HttpSession session = (HttpSession) >cnt.getProperty(Constants.BAG_HTTPSESSION); >session.getID(); these lines will help me. Because I didnt know up to now,

Re: session maintance

2001-10-31 Thread Daniel . Wolff
Hi Oleg, have you set up the scope of the deployed service to session. I have nearly the same question. >HttpSession session = (HttpSession) >cnt.getProperty(Constants.BAG_HTTPSESSION); >session.getID(); these lines will help me. Because I didnt know up to now, how I can get a session from the

RE: Session Tracking question. --> Use of EJB

2001-08-10 Thread nielsenk
; <[EMAIL PROTECTED]> Subject: RE: Session Tracking question. --> Use of EJB

RE: Session Tracking question. --> Use of EJB

2001-08-10 Thread Morten J Nielsen
To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> Subject: RE: Session Tracking

RE: Session Tracking question. --> Use of EJB

2001-08-10 Thread Laurent Letellier
[mailto:[EMAIL PROTECTED]] Envoyé : vendredi 10 août 2001 11:51 À : [EMAIL PROTECTED] Objet : RE: Session Tracking question. --> Use of EJB Hi Laurent, Regarding the out of synch for objects stored in the servlet session, this is of course only interesting for Entity EJB's. The pr

RE: Session Tracking question. --> Use of EJB

2001-08-10 Thread Morten J Nielsen
#x27;" <[EMAIL PROTECTED]> Subject: RE: Session Tracking question. --> Use og EJB

RE: Session Tracking question. --> Use og EJB

2001-08-10 Thread Laurent Letellier
bean and I'm afraid the problem you're talking about could happen. Thanks, Laurent -Message d'origine- De : Morten J Nielsen [mailto:[EMAIL PROTECTED]] Envoyé : vendredi 10 août 2001 10:35 À : [EMAIL PROTECTED] Objet : RE: Session Tracking question. --> Use og EJ

RE: Session Tracking question. --> Use og EJB

2001-08-10 Thread Morten J Nielsen
nkat reddy va.com> cc: Subject: RE: Session Tracking question.

RE: Session Tracking question.

2001-08-02 Thread Christian Cerny
user authentication from a SOAP Service? Christian -- Thanks for the reply. ~Venkat -Original Message- From: Christian Cerny [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 1:40 AM To: '[EMAIL PROTECTED]' Subject: RE: Session Tracking question. Hi, Apache Soap 2.2 is a

RE: Session Tracking question.

2001-08-01 Thread venkat reddy
istian Cerny [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 1:40 AM To: '[EMAIL PROTECTED]' Subject: RE: Session Tracking question. Hi, Apache Soap 2.2 is able to track a HttpSession. As long as you are working with the same Call-object on the client-side your HttpSession is tra

RE: Session Tracking question.

2001-07-30 Thread Christian Cerny
Hi, Apache Soap 2.2 is able to track a HttpSession. As long as you are working with the same Call-object on the client-side your HttpSession is tracked using cookies. (this behavior is "on" per default) Futhermore the value of the "scope" Parameter in your DeploymentDescripter for your Class sho

Re: Session interoperability between MS Toolkit and Soap Apache

2001-07-12 Thread Brajendra . Singh
To do so - I think you need to deploy web-service with session scope. Brajendra Singh