AW: Field level variables

2010-10-05 Thread Stadelmann Josef
0 18:21 An: [email protected]; [email protected] Cc: [email protected] Betreff: RE: Field level variables I think I found the answer to my question. Thank you for pointing me in the correct direction. According to the article here: http://wso2.org/library/articles/axi

RE: Field level variables

2010-09-13 Thread Meeusen, Christopher W.
ptember 13, 2010 8:03 AM To: [email protected]; [email protected] Subject: AW: Field level variables Christopher Jeff is correct; in service.xml there is scope="soapsession" This makes axis2 creating a new instance of your service class for each new user-session. F

RE: AW: Field level variables

2010-09-13 Thread Martin Gainty
à l'information seulement et n'aura pas n'importe quel effet légalement obligatoire. Étant donné que les email peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. > Subject: AW: Field level variables

AW: Field level variables

2010-09-13 Thread Stadelmann Josef
August 2010 18:03 An: Meeusen, Christopher W. Cc: [email protected]; [email protected] Betreff: Re: Field level variables This is configurable in the deployment descriptor. The element has an attribute "scope". One allowed value of this attribute creates an instance of t

RE: Field level variables

2010-08-20 Thread Meeusen, Christopher W.
[email protected]] On Behalf Of Meeusen, Christopher W. Sent: Friday, August 20, 2010 11:06 AM To: [email protected] Cc: [email protected]; [email protected] Subject: RE: Field level variables Thank you for the response! I just want to

RE: Field level variables

2010-08-20 Thread Meeusen, Christopher W.
Sent: Friday, August 20, 2010 11:03 AM To: Meeusen, Christopher W. Cc: [email protected]; [email protected] Subject: Re: Field level variables This is configurable in the deployment descriptor. The element has an attribute "scope". One allowed value of this attribute crea

Re: Field level variables

2010-08-20 Thread Jeff Greif
instantiated and multiple threads use the same instance of the class? > > -Original Message- > From: Meeusen, Christopher W. > Sent: Wednesday, August 18, 2010 5:45 PM > To: [email protected] > Cc: [email protected] > Subject: Re: Field level variables

RE: Field level variables

2010-08-20 Thread Meeusen, Christopher W.
class instantiated and multiple threads use the same instance of the class? -Original Message- From: Meeusen, Christopher W. Sent: Wednesday, August 18, 2010 5:45 PM To: [email protected] Cc: [email protected] Subject: Re: Field level variables My main concern is if this

Re: Field level variables

2010-08-18 Thread Meeusen, Christopher W.
My main concern is if this is thread safe. Are pojos re entrant in axis2-1.3? On Aug 18, 2010, at 17:21, "Meeusen, Christopher W." > wrote: I’m looking through some of my colleagues code and I’m noticing some field level variables declared inside one of our pojos. Someth i

Field level variables

2010-08-18 Thread Meeusen, Christopher W.
I'm looking through some of my colleagues code and I'm noticing some field level variables declared inside one of our pojos. Something similar to this: Public class classA { private classB aClassb; Public classC