RE: Session Scope

2003-02-20 Thread Almeida, Timothy
ned by the 'Service Locator'. -Original Message- From: Barry Levinson [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 20, 2003 3:14 PM To: [EMAIL PROTECTED] Subject: Re: Session Scope Yes, you need to allow cookies to be stored. See archives of this list for a more in de

Re: Session Scope

2003-02-20 Thread Barry Levinson
Yes, you need to allow cookies to be stored. See archives of this list for a more in depth answer. --Barry Almeida, Timothy wrote: I'm attempting to deploy a simple 'hello world type' service to run in "session scope", but it doesn't appear to be working. ('request' & 'application' scope setti

RE: Session scope and threaded request?

2002-09-18 Thread Alan Moore
zation... alan > -Original Message- > From: Rajal Shah [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 18, 2002 6:10 PM > To: [EMAIL PROTECTED] > Subject: RE: Session scope and threaded request? > > > Many thanks.. Perfect example to try out the session s

RE: Session scope and threaded request?

2002-09-18 Thread Rajal Shah
MyInstance() { synchronized ( lock ) { return myInstance; } } } -- Rajal -Original Message- From: Alan Moore [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 5:26 PM To: '[EMAIL PROTECTED]' Subject: RE: Session scope and threaded

RE: Session scope and threaded request?

2002-09-18 Thread Alan Moore
/show_bug.cgi?id=11305 Good luck! alan > -Original Message- > From: Rajal Shah [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 18, 2002 2:31 PM > To: [EMAIL PROTECTED] > Subject: RE: Session scope and threaded request? > > > Ok.. I still need to get this sess

RE: Session scope and threaded request?

2002-09-18 Thread Rajal Shah
Sent: Tuesday, September 17, 2002 11:36 PM To: '[EMAIL PROTECTED]' Subject: RE: Session scope and threaded request? In case of session scope, each session has its own instance of the service class independently of which thread invokes the exposed methods. I suppose that the servlet engin

RE: Session scope and threaded request?

2002-09-17 Thread Ramon Turnes
In case of session scope, each session has its own instance of the service class independently of which thread invokes the exposed methods. I suppose that the servlet engine starts a new thread for each request, at least MessageContext.getCurrentContext() works in such manner. In case of applicat

RE: Session scope and threaded request?

2002-09-17 Thread Alan Moore
AFAIK the behavior is what you would expect from the corresponding servlet session/app behavior. alan > -Original Message- > From: Rajal Shah [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, September 17, 2002 4:18 PM > To: [EMAIL PROTECTED] > Subject: Session scope and threaded request? > >