Re: Session question

2002-10-23 Thread Matthias Brunner
On Wednesday 23 October 2002 22:06, Alan Moore wrote: > FYI: > > If your service is marked for session scope, you don't need to > store your data in the session itself. You can store it in your > service class as a member variable. This reduces your dependency > on accessing the Session object via

RE: Session question

2002-10-23 Thread Alan Moore
EMAIL PROTECTED] Subject: Re: Session question On Wed, 2002-10-23 at 15:09, Matthias Brunner wrote: > On Tuesday 22 October 2002 22:03, Timofey Korolyov wrote: > > On Mon, 2002-10-21 at 22:26, Matthias Brunner wrote: > > > First of all, set scope to "session" in your deplo

Re: Session question

2002-10-23 Thread Matthias Brunner
On Wednesday 23 October 2002 13:45, Timofey Korolyov wrote: > > here is my code sample. is that ok? > Sorry for maybe simple question, but there is no code examples > (expect TestSession) in www (i've searched everything with > google.com). > > public Element getUpdatesList(String branch, String ve

Re: Session question

2002-10-23 Thread Timofey Korolyov
On Wed, 2002-10-23 at 15:09, Matthias Brunner wrote: > On Tuesday 22 October 2002 22:03, Timofey Korolyov wrote: > > On Mon, 2002-10-21 at 22:26, Matthias Brunner wrote: > > > First of all, set scope to "session" in your deployment > > > descriptor (WSDD file). > > > > I've done that, but still not

Re: Session question

2002-10-23 Thread Matthias Brunner
On Tuesday 22 October 2002 22:03, Timofey Korolyov wrote: > On Mon, 2002-10-21 at 22:26, Matthias Brunner wrote: > > First of all, set scope to "session" in your deployment > > descriptor (WSDD file). > > I've done that, but still nothing happens. You have to call Call.setMaintainSession(true) on

Re: Session question

2002-10-22 Thread Timofey Korolyov
On Mon, 2002-10-21 at 22:26, Matthias Brunner wrote: > First of all, set scope to "session" in your deployment descriptor > (WSDD file). I've done that, but still nothing happens. Server returns: HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Connection: close Date: Tue, 22 Oct 2002 19:5

Re: Session question

2002-10-22 Thread Timofey Korolyov
On Mon, 2002-10-21 at 22:26, Matthias Brunner wrote: > First of all, set scope to "session" in your deployment descriptor > (WSDD file). > And look at the session example in the samples dir. Thank you! And is it possible to work with sessions from *.jws files? -- Timofey Korolyov <[EMAIL PROTE

Re: Session question

2002-10-22 Thread Matthias Brunner
On Tuesday 22 October 2002 09:26, [EMAIL PROTECTED] wrote: > Hi Matthias, > I have put Axis on ATG, but the sessions does not get killed > even though I've set it to "Request" scope. I had to invalidate > the session from the AxisServlet to kill the session, which I > definitely don't want(do

Re: Session question

2002-10-22 Thread ttran22
| |cc: | | Subject: Re: Session question | >---| On Monday 21 October 2002 19:40, Timofey K

Session question

2002-10-21 Thread Timofey Korolyov
Hello there! Thank you people for such a great product like Axis. I'm interested in how can manage Sessions in my service: I've tried like this: public Document getUpdatesList(String branch, String version, Element pluginsList) { SimpleSession ses

scope=session question

2002-07-15 Thread Heitzso
I would like to use the automatic object scoping provided by axis with scope=session. I've run tests with mozilla javascript client accessing my axis service and the object-session-instantiation seems to occur as might be expected, i.e. start up a new browser session and a new instance of the cla