Re: I'm using jdk1.6 + tomcat 7.0.23

2015-06-21 Thread Bob Hall
On Saturday, June 20, 2015 11:17 PM, hao huang wrote: >  Can you put my E-mail account deleted from the mailing list, thank you Hao, as indicated here:   Apache Tomcat - Mailing Lists you should send a blank email to users-unsubscr...@tomcat.apache.org to unsubscribe from the Tomcat users

Re: I'm using jdk1.6 + tomcat 7.0.23

2015-06-20 Thread hao huang
Can you put my E-mail account deleted from the mailing list, thank you! 2015-06-11 12:42 GMT+08:00 chedana jayasinghe : > HI, > In my web application, in a jsp there is a javascript which sends request > to a servlet every twenty seconds, so it kills my applications user idle > time tracking by

Re: I'm using jdk1.6 + tomcat 7.0.23

2015-06-19 Thread chedana jayasinghe
Chris, I really appreciate your quick responses. In the servlet it just calls some values through request.getParameter( ) and then it binds an array variable of a sychronized method that's all. below is the whole filter class public class UTF8Filter implements Filter{ public void destroy() {}

Re: I'm using jdk1.6 + tomcat 7.0.23

2015-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Chedana, On 6/18/15 2:09 AM, chedana jayasinghe wrote: > request goes to a doPost method of a servlet and there it used to > return some values in the response, and there is a one filter which > encode request's characters to UTF-8. But how come it

Re: I'm using jdk1.6 + tomcat 7.0.23

2015-06-17 Thread chedana jayasinghe
Christopher, *Is there a big change of how tomcat manage sessions, in versions before tomcat 6. still I'm little confused about the behavior of my application * On Thu, Jun 18, 2015 at 11:39 AM, chedana jayasinghe < chedanajayasin...@gmail.com> wrote: > request goes to a doPost method of a se

Re: I'm using jdk1.6 + tomcat 7.0.23

2015-06-17 Thread chedana jayasinghe
request goes to a doPost method of a servlet and there it used to return some values in the response, and there is a one filter which encode request's characters to UTF-8. But how come it effects the session last accessed time get updated, because as to my knowledge It is monitored by the servlet

Re: I'm using jdk1.6 + tomcat 7.0.23

2015-06-15 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Chedana, On 6/15/15 9:07 AM, chedana jayasinghe wrote: > Christopher, > > I'm not using "strict servlet compliance", still *I've tried > setting * org.apache.catalina.core.StandardHostValve.ACCESS_SESSION > system property to false in catalina prop

Re: I'm using jdk1.6 + tomcat 7.0.23

2015-06-15 Thread chedana jayasinghe
Christopher, I'm not using "strict servlet compliance", still *I've tried setting * org.apache.catalina.core.StandardHostValve.ACCESS_SESSION system property to false in catalina properties but no luck. still the problem is same. Javascript heartbeat keeps the session alive only in tomcat 7 and

Re: I'm using jdk1.6 + tomcat 7.0.23

2015-06-11 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Chedana, On 6/11/15 12:42 AM, chedana jayasinghe wrote: > HI, In my web application, in a jsp there is a javascript which > sends request to a servlet every twenty seconds, so it kills my > applications user idle time tracking by resetting the last

I'm using jdk1.6 + tomcat 7.0.23

2015-06-10 Thread chedana jayasinghe
HI, In my web application, in a jsp there is a javascript which sends request to a servlet every twenty seconds, so it kills my applications user idle time tracking by resetting the lastAccessed time. the funny thing is lastAccessed time doesn't get updated in tomcat 6 and my applications idle t