RE: Axis MessageContext to the WebService

2003-08-19 Thread Robert Lowe
Jakob Skovenborg [mailto:[EMAIL PROTECTED] Sent: Monday, August 18, 2003 11:44 PM To: [EMAIL PROTECTED] Subject: RE: Axis MessageContext to the WebService Hej Rober and Jim Thank's a lot. I did'nt know this ThreadLocal mechanism. For other purposes, do you know any examples how to use it.

RE: Axis MessageContext to the WebService

2003-08-18 Thread Jakob Skovenborg
essage- > > From: Hans Jakob Skovenborg [mailto:[EMAIL PROTECTED] > > Sent: 18 August 2003 15:08 > > To: '[EMAIL PROTECTED]' > > Subject: SV: Axis MessageContext to the WebService > > > > > > Hej Jim > > How does that work with concurren

RE: Axis MessageContext to the WebService

2003-08-18 Thread Jim Harris
Skovenborg [mailto:[EMAIL PROTECTED] > Sent: 18 August 2003 15:08 > To: '[EMAIL PROTECTED]' > Subject: SV: Axis MessageContext to the WebService > > > Hej Jim > How does that work with concurrent WebServices? Wont you get a > MessageContext belongs to another sess

SV: Axis MessageContext to the WebService

2003-08-18 Thread Hans Jakob Skovenborg
Hej Jim How does that work with concurrent WebServices? Wont you get a MessageContext belongs to another session. /Jakob -Oprindelig meddelelse- Fra: Jim Harris [mailto:[EMAIL PROTECTED] Sendt: 18. august 2003 15:10 Til: [EMAIL PROTECTED] Emne: RE: Axis MessageContext to the WebService

RE: Axis MessageContext to the WebService

2003-08-18 Thread Jakob Skovenborg
rned depending the thread that invokes it. > > - Rob > > > - Original Message - > From: "Jakob Skovenborg" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Monday, August 18, 2003 10:54 PM > Subject: Re: RE: Axis MessageContext

RE: Axis MessageContext to the WebService

2003-08-18 Thread Jakob Skovenborg
> Sent: 16 August 2003 08:06 > > To: [EMAIL PROTECTED] > > Subject: Axis MessageContext to the WebService > > > > > > How do I pass the Axis MessageContext from the Pivot > Handler to > > the WebService. My Webservice has to get access to a > backend > > service which need the UserID from MessageContext. > > /Jakob > > > >

Re: RE: Axis MessageContext to the WebService

2003-08-18 Thread Peter Mount
> > HTH > > Jim > > > > > -Original Message- > > > From: Jakob Skovenborg [mailto:[EMAIL PROTECTED] > > > Sent: 16 August 2003 08:06 > > > To: [EMAIL PROTECTED] > > > Subject: Axis MessageContext to the WebService > > &

Re: RE: Axis MessageContext to the WebService

2003-08-18 Thread Robert Lowe
. > > > > HTH > > Jim > > > > > -Original Message- > > > From: Jakob Skovenborg [mailto:[EMAIL PROTECTED] > > > Sent: 16 August 2003 08:06 > > > To: [EMAIL PROTECTED] > > > Subject: Axis MessageContext to the WebService > > &

RE: RE: Axis MessageContext to the WebService

2003-08-18 Thread Jim Harris
> Sent: 18 August 2003 15:55 > To: [EMAIL PROTECTED] > Subject: Re: RE: Axis MessageContext to the WebService > > > Hej Jim > How does that work with concurrent WebServices? Wont you get a > MessageContext belongs to another session. > /Jakob > > Jim Harr

Re: RE: Axis MessageContext to the WebService

2003-08-18 Thread Jakob Skovenborg
> Sent: 16 August 2003 08:06 > > To: [EMAIL PROTECTED] > > Subject: Axis MessageContext to the WebService > > > > > > How do I pass the Axis MessageContext from the Pivot > Handler to > > the WebService. My Webservice has to get access to a > backend > > service which need the UserID from MessageContext. > > /Jakob > > > >

RE: Axis MessageContext to the WebService

2003-08-18 Thread Jim Harris
Jakob Skovenborg [mailto:[EMAIL PROTECTED] > Sent: 16 August 2003 08:06 > To: [EMAIL PROTECTED] > Subject: Axis MessageContext to the WebService > > > How do I pass the Axis MessageContext from the Pivot Handler to > the WebService. My Webservice has to get access to a backend >

Axis MessageContext to the WebService

2003-08-16 Thread Jakob Skovenborg
How do I pass the Axis MessageContext from the Pivot Handler to the WebService. My Webservice has to get access to a backend service which need the UserID from MessageContext. /Jakob

RE: Axis MessageContext

2003-01-24 Thread Cory Wilkerson
one: http://www.jcp.org/aboutJava/communityprocess/final/jsr053/ (see srv.2.2). Thanks for the clarification on MessageContext... Cory -Original Message- From: Wes Devauld [mailto:[EMAIL PROTECTED]] Sent: Friday, January 24, 2003 9:38 AM To: [EMAIL PROTECTED] Subject: Re: Axis MessageContext

Re: Axis MessageContext

2003-01-24 Thread Wes Devauld
Firstly I don't think there is only one instance of a servlet for all calls to a web context. The reason all member variables are static is because it does create several servlets. With Servlets you do have to deal with mulitple threading issues. Second, MessageContext.getCurrentContext does co

Axis MessageContext

2003-01-24 Thread Cory Wilkerson
Two questions: 1) Like servlets, is there exactly one instance of the service I've exposed via axis? 2) If so, can I operate under the assumption that MessageContext.getCurrentContext() directly correlates to the current request? Much like Thread.currentThread()? Thanks! Cory