Re: Need to disable session interceptor

2009-09-01 Thread Dave Newton
ing to do with JMeter. Sessions are being created for every client. I am trying to find out why is the session created when I did not create the session in my code. -- Rajeev -Original Message- From: Martin Gainty Reply-to: " Struts Users Mailing List" To: Struts Users Mailing Lis

Re: Need to disable session interceptor

2009-09-01 Thread Peter Phillips
ession="false"> > > at the top of your JSPs? > > > > > > > > Chris > > > > > > > -Original Message- > From: Rajeev Sharma > To: Struts Users Mailing List > Sent: Tue, Sep 1, 2009 9:49 am > Subject: RE: Need to di

Re: Need to disable session interceptor

2009-09-01 Thread musomesa
rs Mailing List Sent: Tue, Sep 1, 2009 9:49 am Subject: RE: Need to disable session interceptor I googled this and the struts2 performance tuning page says this "Struts 2 does not create sessions unless asked to (for example, by having the createSession interceptor in your interceptor

Re: Need to disable session interceptor

2009-09-01 Thread Nils-Helge Garli Hegvik
> I am trying to find out why is the session created when I did not create > the session in my code. > > -- > Rajeev > Well, I believe Struts 2 internally does request.getSession(false) to prevent creating sessions when there isn't one... Which interceptor stack are you using? You could also try a

RE: [OT] Re: Need to disable session interceptor

2009-09-01 Thread Martin Gainty
enu fourni. > Date: Tue, 1 Sep 2009 15:40:42 +0200 > Subject: [OT] Re: Need to disable session interceptor > From: nil...@gmail.com > To: user@struts.apache.org > > Hm... I don't know... Maybe read the documentation? > > http://jakarta.apache.org/jmeter/usermanual/

RE: Need to disable session interceptor

2009-09-01 Thread Rajeev Sharma
I am trying to find out why is the session created when I did not create the session in my code. -- Rajeev -Original Message- From: Martin Gainty Reply-to: "Struts Users Mailing List" To: Struts Users Mailing List Subject: RE: Need to disable session interceptor Date: Tue,

[OT] Re: Need to disable session interceptor

2009-09-01 Thread Nils-Helge Garli Hegvik
sée ou la copie de ceci > est interdite. Ce message sert à 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é pou

RE: Need to disable session interceptor

2009-09-01 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. > Date: Tue, 1 Sep 2009 13:19:22 +0200 >

Re: Need to disable session interceptor

2009-09-01 Thread Nils-Helge Garli Hegvik
>From the JMeter FAQ: "How do I ensure each http request for jsp is within one jsessionid ?" http://wiki.apache.org/jakarta-jmeter/JMeterFAQ#head-114aca8407cf0eaff55b7ae5955eda46b1e2cecb Nils-H On Tue, Sep 1, 2009 at 1:15 PM, Dave Newton wrote: > Rajeev Sharma wrote: >> >> I am new to struts2 (I

Re: Need to disable session interceptor

2009-09-01 Thread Dave Newton
Rajeev Sharma wrote: I am new to struts2 (I mean struts). I am developing an application which does not need to use sessions at all. When I tested my application with jmeter, I got 18000 sessions created (tomcat showed me this). Looks like for every individual request there is one session creat