RE: Intermittent Session Problems in Strut2.

2009-09-15 Thread John Liptak
was cached. You probably have a different issue, but since you don't have any other details, I can't be more helpful. John -Original Message- From: rohansd [mailto:rohan.de...@tcs.com] Sent: Wednesday, September 09, 2009 8:47 PM To: user@struts.apache.org Subject: Re: Intermittent Session

Re: Intermittent Session Problems in Strut2.

2009-09-10 Thread Paweł Wielgus
Hi, i don't know if it will help but You can try same thing i did here [1] i was trying to force pages not to being cached and it turned out not to be trivial. Still i don't know how it will behave with proxy. [1] http://poulwiel.blogspot.com/2009/01/browser-back-button-and-caching-problem.html

Re: Intermittent Session Problems in Strut2.

2009-09-10 Thread j alex
Are you using Spring to wire up the Action ? -- just a wild guess that the bean scope may be Singleton (the default value) and that causes the data sharing ? 2009/9/10 Paweł Wielgus poulw...@gmail.com Hi, i don't know if it will help but You can try same thing i did here [1] i was trying to

Re: Intermittent Session Problems in Strut2.

2009-09-09 Thread rohansd
Even we am facing this problem with my application whe it runs on proxy servers. Apparently, this problem occurs only with a certain proxy server. There may be rules defined on the proxy server but being an internet application we have to live with it and find a solution. The information that is

Re: Intermittent Session Problems in Strut2.

2009-08-24 Thread pankaj semwal
Hi, I used SessionAware interface .Still i am facing the same problem.

Re: Intermittent Session Problems in Strut2.

2009-08-24 Thread Lukasz Lenart
2009/8/24 pankaj semwal semw...@gmail.com:  I used SessionAware interface .Still i am facing the same problem. It means, the problem is somewhere else. Without code is hard to guess Regards -- Lukasz http://www.lenart.org.pl/ http://dailylog.lenart.org.pl/

Re: Intermittent Session Problems in Strut2.

2009-08-24 Thread pankaj semwal
In my LoginAction i am setting the session as private boolean isUserExist() { Connection con = null; boolean result = false; // MD5Util MD5=new MD5Util(); try { con = ConnectionFactory.getConnection(); String sqlQ = SELECT * FROM USER_MASTER WHERE LOGIN_ID=?

Re: Intermittent Session Problems in Strut2.

2009-08-24 Thread musomesa
: Intermittent Session Problems in Strut2. In my LoginAction i am setting the session as private boolean isUserExist() { Connection con = null; boolean result = false; // MD5Util MD5=new MD5Util(); try { con = ConnectionFactory.getConnection(); String sqlQ

Re: Intermittent Session Problems in Strut2.

2009-08-24 Thread Dave Newton
pankaj semwal wrote: private boolean isUserExist() { Connection con = null; boolean result = false; try { con = ConnectionFactory.getConnection(); String sqlQ = SELECT * FROM USER_MASTER WHERE LOGIN_ID=? + AND PASSWORD=? AND ROLE=? AND

Re: Intermittent Session Problems in Strut2.

2009-08-24 Thread pankaj semwal
Intermittent session problems come when our application runs on proxy servers. Even i put the cache remove tags in jsp. Still same problem i am facing. Thanks

Re: Intermittent Session Problems in Strut2.

2009-08-23 Thread Lukasz Lenart
2009/8/23 pankaj semwal semw...@gmail.com: Please tell me where i am wrong. You should use SessionAware interface instead (if you're doing that in action) and the problem probably is in some other place, you must have some global instance variable. Regards -- Lukasz http://www.lenart.org.pl/

Re: Intermittent Session Problems in Strut2.

2009-08-23 Thread Struts Two
Do you log in to the system from two different client machines or you log in to both accounts using tabs of a same browser IE or firefox ? --- On Sun, 8/23/09, pankaj semwal semw...@gmail.com wrote: From: pankaj semwal semw...@gmail.com Subject: Intermittent Session Problems in Strut2. To:

Re: Intermittent Session Problems in Strut2.

2009-08-23 Thread musomesa
where is the information they are sharing located? Chris -Original Message- From: Struts Two struts...@yahoo.ca To: Struts Users Mailing List user@struts.apache.org Sent: Sun, Aug 23, 2009 10:05 am Subject: Re: Intermittent Session Problems in Strut2. Do you log