Tomcat Manager, Session Statistics

2005-10-05 Thread Jean-Pierre Pelletier
Hi, 1) When I look at sessions statistics for an application, using https://localhost/manager/html/sessions?path=/myApplication Why does Tomcat always list the number of sessions to expired within 10 minutes as equal to the number of active sessions? According to the documentation of Tomcat

Re: Tomcat Manager, Session Statistics

2005-10-05 Thread Mark Thomas
Jean-Pierre Pelletier wrote: Hi, 1) When I look at sessions statistics for an application, using https://localhost/manager/html/sessions?path=/myApplication Why does Tomcat always list the number of sessions to expired within 10 minutes as equal to the number of active sessions? Looks like a

Re: Tomcat Manager, Session Statistics

2005-10-05 Thread Jean-Pierre Pelletier
PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Wednesday, October 05, 2005 3:22 PM Subject: Re: Tomcat Manager, Session Statistics Jean-Pierre Pelletier wrote: Hi, 1) When I look at sessions statistics for an application, using https://localhost/manager/html/sessions?path

Re: Tomcat Manager, Session Statistics

2005-10-05 Thread Rainer Jung
] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Wednesday, October 05, 2005 3:22 PM Subject: Re: Tomcat Manager, Session Statistics Jean-Pierre Pelletier wrote: Hi, 1) When I look at sessions statistics for an application, using https://localhost/manager/html/sessions?path

RE: Tomcat 5.0.25 session persistence

2004-09-22 Thread Shapira, Yoav
before the server shut down are lost. Yoav Shapira Millennium Research Informatics -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Stephen Souness Sent: Tuesday, September 21, 2004 5:41 PM To: [EMAIL PROTECTED] Subject: Tomcat 5.0.25 session persistence Hi all, I have

Tomcat 5.0.25 session persistence

2004-09-21 Thread Stephen Souness
Hi all, I have a Tomcat 5.0.25 system running behind apache under linux, which produces the following exception whenever I restart it: java.io.FileNotFoundException: /usr/local/jakarta-tomcat-5.0.25/work/Catalina/www.my-sitename.co.nz/_/SESSIONS.ser (No such file or directory) Does anyone

Tomcat 5 Session Replication and ServletContext

2004-06-21 Thread Lukas Bradley
I'm looking for a clarification on the functionality of the Session Replication within Tomcat 5. Is the only data replicated across servers that which is placed in the HttpSession? In other words, is any data placed within the ServletContext (application layer) object replicated? Thanks

RE: Tomcat 5 Session Replication and ServletContext

2004-06-21 Thread Dale, Matt
Yes the only data replicated is the session information. Anything in the application ServletContext will not be copied between servers. Ta Matt -Original Message- From: Lukas Bradley [mailto:[EMAIL PROTECTED] Sent: 21 June 2004 16:09 To: [EMAIL PROTECTED] Subject: Tomcat 5 Session

RE: Tomcat 5 Session Replication and ServletContext

2004-06-21 Thread Woodchuck
ServletContext will not be copied between servers. Ta Matt -Original Message- From: Lukas Bradley [mailto:[EMAIL PROTECTED] Sent: 21 June 2004 16:09 To: [EMAIL PROTECTED] Subject: Tomcat 5 Session Replication and ServletContext I'm looking for a clarification

RE: Tomcat 5 Session Replication and ServletContext

2004-06-21 Thread Dale, Matt
: Woodchuck [mailto:[EMAIL PROTECTED] Sent: 21 June 2004 17:17 To: Tomcat Users List Subject: RE: Tomcat 5 Session Replication and ServletContext is it possible to set it up so that each user's session always go to the same app server in a multi app server scenario? or is this not possible

RE: Tomcat 4 session replication in a production environment

2004-04-19 Thread Filip Hanik \(lists\)
] Sent: Thursday, April 15, 2004 11:04 AM To: '[EMAIL PROTECTED]' Subject: Tomcat 4 session replication in a production environment Hi, Is anyone using Tomcat 4 session replication in a production environment, if so, could you please share your experiences ? Unfortunately we are unable to upgrade

Tomcat 4 session replication in a production environment

2004-04-15 Thread Ryan Lissack
Hi, Is anyone using Tomcat 4 session replication in a production environment, if so, could you please share your experiences ? Unfortunately we are unable to upgrade to TC 5 for now but I need to setup session replication for some of our TC 4 servers for fail-over purposes (we have HW load

Re: Tomcat 4.1.24 Session Persistance between restarts ???

2003-11-29 Thread John B. Moore
Ah, yes, I think they should be but you are right, I need to reconfirm this.. Thanks... John.. Jacob Kjome wrote: Make sure all the objects in your session are serializable. If not, you will get null values (or possibly other errors) after deserialization. Jake At 04:34 PM

Tomcat 4.1.24 Session Persistance between restarts ???

2003-11-28 Thread John B. Moore
Folks, Here is the scenario 1) User logs in and begins a session along with loading some session objects (worker classes) 2) Tomcat is shut down and restarted 3) Same user clicks next button on current JSP page (user did not know tomcat was restarted) a) Session isNew() reports

Re: Tomcat 4.1.24 Session Persistance between restarts ???

2003-11-28 Thread Jacob Kjome
Make sure all the objects in your session are serializable. If not, you will get null values (or possibly other errors) after deserialization. Jake At 04:34 PM 11/28/2003 -0800, you wrote: Folks, Here is the scenario 1) User logs in and begins a session along with loading some session

Tomcat 5, session replication problem

2003-11-18 Thread tuong . d . ly
Deear I'm having problems with the session replication with Tomcat 5. I'm trying to cluster two Tomcat's across two machines. The first Tomcat starts fine, but whenever I start the second Tomcat on a different machine I get the errors shown below. I followed the directions exactly-have

Re: Tomcat 5, session replication problem

2003-11-18 Thread Christopher Schultz
Tuong, I'm having problems with the session replication with Tomcat 5. I'm trying to cluster two Tomcat's across two machines. The first Tomcat starts fine, but whenever I start the second Tomcat on a different machine I get the errors shown below. I followed the directions exactly-have

Re: Tomcat 5, session replication problem

2003-11-18 Thread tuong . d . ly
To: Tomcat Users List [EMAIL PROTECTED] cc: Subject:Re: Tomcat 5, session replication problem Tuong, I'm having problems with the session replication with Tomcat 5. I'm trying to cluster two Tomcat's across two machines. The first Tomcat starts fine

Re: Tomcat 5, session replication problem

2003-11-18 Thread Christopher Schultz
Tom, I think you're right, I'm using a company owned laptop. How would I check to see if the port number is working? I assume it's the mcastPort=45564 I tried a ping but that didn't work. Well, you can't ping a port, but you can telnet to it: $ telnet host portnum And see if you can connect.

Re: Tomcat 5, session replication problem

2003-11-18 Thread Filip Hanik
Users List [EMAIL PROTECTED] Sent: Tuesday, November 18, 2003 10:12 AM Subject: Tomcat 5, session replication problem Deear I'm having problems with the session replication with Tomcat 5. I'm trying to cluster two Tomcat's across two machines. The first Tomcat starts fine, but whenever I start

RE: Tomcat 4.1.18 session objects

2003-02-26 Thread Shapira, Yoav
Howdy, I was wondering why using sessions is unreliable for tracking users who are logged in, getting last accessed time, etc? I am too late to respond, as others (Will and Craig) have already pointed out a few ways in which session tracking as described in your original design is not 100%

Tomcat 4.1.18 session objects

2003-02-25 Thread R.C.Nougain
Where can I find the changes list from Tomcat 4.0.x to Tomcat 4.1.x. Could someone answer 'session' question mentioned below | I moved my web appl from Tomcat 4.0.4 to Tomcat4.1.18. | For each user session I store the reference| to the session in a Vector so that I | can tell what users are

RE: Tomcat 4.1.18 session objects

2003-02-25 Thread Shapira, Yoav
Howdy, Where can I find the changes list from Tomcat 4.0.x to Tomcat 4.1.x. Download any release of tomcat. Explode the distribution and you'll see a bunch of release notes files, one for each labeled release, detailing what's new in that release. | For each user session I store the

RE: Tomcat 4.1.18 session objects

2003-02-25 Thread Greg Speechley
To: Tomcat Users List Subject: RE: Tomcat 4.1.18 session objects Howdy, Where can I find the changes list from Tomcat 4.0.x to Tomcat 4.1.x. Download any release of tomcat. Explode the distribution and you'll see a bunch of release notes files, one for each labeled release, detailing what's new

RE: Tomcat 4.1.18 session objects

2003-02-25 Thread Filip Hanik
: RE: Tomcat 4.1.18 session objects Hi Yoav, I was wondering why using sessions is unreliable for tracking users who are logged in, getting last accessed time, etc? I would have thought that storing all the current sessions in a Vector (or some other data structure) with a User object (storing all

Re: Tomcat 4.1.18 session objects

2003-02-25 Thread Erik Price
[mailto:[EMAIL PROTECTED] Sent: Tuesday, February 25, 2003 3:54 PM To: Tomcat Users List Subject: RE: Tomcat 4.1.18 session objects Hi Yoav, I was wondering why using sessions is unreliable for tracking users who are logged in, getting last accessed time, etc? I would have thought that storing all

RE: Tomcat 4.1.18 session objects

2003-02-25 Thread Greg Speechley
to access such a list so you would have to store it yourself. Why would this be unreliable? Greg -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED] Sent: Wednesday, 26 February 2003 10:29 AM To: Tomcat Users List Subject: RE: Tomcat 4.1.18 session objects sessions are designed

RE: Tomcat 4.1.18 session objects

2003-02-25 Thread Filip Hanik
you are right,it is totally doable. just remember to clean up yourself when the session expires. Filip -Original Message- From: Greg Speechley [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 25, 2003 4:09 PM To: Tomcat Users List Subject: RE: Tomcat 4.1.18 session objects I realise

Re: Tomcat 4.1.18 session objects

2003-02-25 Thread Will Hartung
From: Greg Speechley [EMAIL PROTECTED] Sent: Tuesday, February 25, 2003 4:09 PM Subject: RE: Tomcat 4.1.18 session objects I realise that sessions are for user tracking, etc but I wanted to know why it was suggested that it was a bad idea to store them in a vector so that you would have

Re: Tomcat 4.1.18 session objects

2003-02-25 Thread Kris Schneider
To: Tomcat Users List Subject: RE: Tomcat 4.1.18 session objects I realise that sessions are for user tracking, etc but I wanted to know why it was suggested that it was a bad idea to store them in a vector so that you would have access to a list of users who are currently logged in (have valid

RE: Tomcat 4.1.18 session objects

2003-02-25 Thread Greg Speechley
Clean up would just be invalidating the session and removing it from the vector? Nothing else I am missing? Cheers Greg -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED] Sent: Wednesday, 26 February 2003 10:44 AM To: Tomcat Users List Subject: RE: Tomcat 4.1.18 session

RE: Tomcat 4.1.18 session objects

2003-02-25 Thread Filip Hanik
yes, the session can get invalidated two ways, one, you invalidate it yourself, or the session expires Filip -Original Message- From: Greg Speechley [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 25, 2003 4:29 PM To: Tomcat Users List Subject: RE: Tomcat 4.1.18 session objects

RE: Tomcat 4.1.18 session objects

2003-02-25 Thread Craig R. McClanahan
On Tue, 25 Feb 2003, Filip Hanik wrote: Date: Tue, 25 Feb 2003 16:41:45 -0800 From: Filip Hanik [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: RE: Tomcat 4.1.18 session objects yes, the session can get invalidated two ways

Tomcat 4.1.18 session

2003-02-24 Thread D Bamud
I moved my web appl from Tomcat 4.0.4 to Tomcat4.1.18. For each user session I store the reference to the session in a Vector so that I can tell what users are logged-in, last-accessed-time etc. It was working fine in Tomcat 4.0.4. But in Tomcat4.1.18 (perhaps due to new specifications) session

Tomcat losing session

2003-01-14 Thread Charlie Toohey
with session id = Y. When another request comes in from the same client, cookie value JSESSIONID now = Y, and Tomcat session id is Y. As expected. The same requests can produce the two different scenarios, so it does not appear to be specific to the resource which is requested. But there are more

Re: Tomcat losing session

2003-01-14 Thread Carl Walker
, cookie value JSESSIONID now = Y, and Tomcat session id is Y. As expected. The same requests can produce the two different scenarios, so it does not appear to be specific to the resource which is requested. But there are more specifics --- when this happens, the first resource requested

Re: Tomcat losing session

2003-01-14 Thread Charlie Toohey
session again, with session id=Z. What happens most of the time is that client request comes in with cookie value JSESSIONID=X, and Tomcat creates a new session with session id = Y. When another request comes in from the same client, cookie value JSESSIONID now = Y, and Tomcat session id

Re: Tomcat losing session

2003-01-14 Thread Andy Meadows
: Charlie Toohey [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, January 14, 2003 4:24 PM Subject: Re: Tomcat losing session Thanks. However, I am writing the cookie value to the log, and the cookie value is identical for subsequent requests, yet Tomcat creates a new

Re: Tomcat losing session

2003-01-14 Thread Tim Funk
request comes in from the same client, cookie value JSESSIONID now = Y, and Tomcat session id is Y. As expected. The same requests can produce the two different scenarios, so it does not appear to be specific to the resource which is requested. But there are more specifics --- when this happens

RE: Tomcat losing session

2003-01-14 Thread Ralph Einfeldt
(), request.isRequestedSessionIdFromUrl() request.isRequestedSessionIdFromCookie() request.isRequestedSessionIdValid() -Original Message- From: Charlie Toohey [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 14, 2003 9:08 PM To: [EMAIL PROTECTED] Subject: Tomcat losing session

Tomcat 4.1.12, session attributes, and hanging-up

2002-12-19 Thread Bogdan Kiszka
Something strange happens with Tomcat. It ignores session atributes. When it starts to accept them then it hungs up after a while. It happens to standalone version, as well as in isapi version. i.e. this example: % String count = (String)session.getAttribute(numVisits); count = increment

Tomcat and Session And jsp include

2002-07-17 Thread Ashish Kulkarni
Hi, I am developing an web application using tomcat4.0.4 and apache 2.0.39 on win2000 I want the user the login on the first page, so once the user logs in i create a session for the user, now in other jsp in applciation i have a header.jsp this jsp checks if the session is active or experied,

RE: Tomcat looses session with IE5

2002-06-27 Thread Sexton, George
10:43 AM To: Tomcat Users List Subject: Tomcat looses session with IE5 Hello all: I successfully deployed my application using tomcat 4.0.2 a few weeks ago and tested it on virtually every browser i could get hold of. It works! Todaye I was informed that one of my colleagues has problems

RE: Tomcat looses session with IE5

2002-06-27 Thread Prashanth Pushpagiri
request to /. If this is a servlet that dumps the sessions, then you are out of business. -Original Message- From: Prashanth Pushpagiri [mailto:[EMAIL PROTECTED]] Sent: 27 June, 2002 10:43 AM To: Tomcat Users List Subject: Tomcat looses session with IE5 Hello all: I

RE: Tomcat looses session with IE5

2002-06-27 Thread Seth Brahler
[mailto:[EMAIL PROTECTED]] Sent: 27 June, 2002 10:43 AM To: Tomcat Users List Subject: Tomcat looses session with IE5 Hello all: I successfully deployed my application using tomcat 4.0.2 a few weeks ago and tested it on virtually every browser i could get hold of. It works

RE: Tomcat looses session with IE5

2002-06-27 Thread Prashanth Pushpagiri
To: Tomcat Users List Subject: Tomcat looses session with IE5 Hello all: I successfully deployed my application using tomcat 4.0.2 a few weeks ago and tested it on virtually every browser i could get hold of. It works! Todaye I was informed that one of my colleagues has

RE: Tomcat looses session with IE5

2002-06-27 Thread Sexton, George
: Tomcat looses session with IE5 I tested the same for IE5, 5.5, 6 and netscape. the problem is with a particular client and i was wondering if anyone had prior experiences like this. Prashanth --- Seth Brahler [EMAIL PROTECTED] wrote: I have a session variable set w/ IE5 and I am not having

RE: Tomcat looses session with IE5

2002-06-27 Thread Corbin, Ken
Does he have cookies disabled? Or some other weird security setting? -Original Message- From: Prashanth Pushpagiri Sent: Thursday, June 27, 2002 10:42 AM To: Tomcat Users List Subject: RE: Tomcat looses session with IE5 I tested the same for IE5, 5.5, 6 and netscape. the problem

RE: Tomcat looses session with IE5

2002-06-27 Thread Turner, John
a customer that has IE 6.0.some.other.version and the site does not work. HTH John Turner [EMAIL PROTECTED] -Original Message- From: Prashanth Pushpagiri [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 27, 2002 1:39 PM To: Tomcat Users List Subject: RE: Tomcat looses session with IE5 I

RE: Tomcat looses session with IE5

2002-06-27 Thread Wilson, James R
-Original Message- From: Prashanth Pushpagiri [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 27, 2002 1:39 PM To: Tomcat Users List Subject: RE: Tomcat looses session with IE5 I tested the same for IE5, 5.5, 6 and netscape. the problem is with a particular client and i was wondering if anyone had

RE: Tomcat looses session with IE5

2002-06-27 Thread Prashanth Pushpagiri
... so s/he would get the 'wrong' dynamic page. The IP bundling can obviate some types of sessions. Jim -Original Message- From: Prashanth Pushpagiri [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 27, 2002 1:39 PM To: Tomcat Users List Subject: RE: Tomcat looses session with IE5

Re: how does tomcat store session objects?

2002-05-26 Thread Phillip Morelock
Can someone tell me how tomcat stores session objects or at least where I could find out this info without looking at the src? without looking at the source? why not? it's Free, and it's the most authoritative answer you can get. Hi, Maybe I just feel like getting someone else's opinion

Re: how does tomcat store session objects?

2002-05-26 Thread Phillip Morelock
. But at least build yourself the javadoc from the sources and read that stuff. Also see the high-level architecture image (or maybe pdf?) on the jakarta site. fillup Can someone tell me how tomcat stores session objects or at least where I could find out this info without looking at the src

Re: how does tomcat store session objects?

2002-05-26 Thread jfc100
...understandable, I guess. But at least build yourself the javadoc from the sources and read that stuff. Also see the high-level architecture image (or maybe pdf?) on the jakarta site. fillup Can someone tell me how tomcat stores session objects or at least where I could find out this info without

Re: how does tomcat store session objects?

2002-05-26 Thread jfc100
. But at least build yourself the javadoc from the sources and read that stuff. Also see the high-level architecture image (or maybe pdf?) on the jakarta site. fillup Can someone tell me how tomcat stores session objects or at least where I could find out this info without looking at the src? without

Re: how does tomcat store session objects?

2002-05-26 Thread Phillip Morelock
?) on the jakarta site. fillup Can someone tell me how tomcat stores session objects or at least where I could find out this info without looking at the src? without looking at the source? why not? it's Free, and it's the most authoritative answer you can get. Hi, Maybe I just feel

Re: how does tomcat store session objects?

2002-05-26 Thread jfc100
Thanks! joe -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

how does tomcat store session objects?

2002-05-25 Thread jfc100
Hi, Can someone tell me how tomcat stores session objects or at least where I could find out this info without looking at the src? Thanks Joe -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: how does tomcat store session objects?

2002-05-25 Thread Phillip Morelock
On 5/25/02 6:20 AM, jfc100 [EMAIL PROTECTED] wrote: Can someone tell me how tomcat stores session objects or at least where I could find out this info without looking at the src? without looking at the source? why not? it's Free, and it's the most authoritative answer you can get

Re: how does tomcat store session objects?

2002-05-25 Thread jfc100
Phillip Morelock wrote: On 5/25/02 6:20 AM, jfc100 [EMAIL PROTECTED] wrote: Can someone tell me how tomcat stores session objects or at least where I could find out this info without looking at the src? without looking at the source? why not? it's Free, and it's the most authoritative

Does tomcat support session management and connection pooling

2002-03-21 Thread Uma Munugala
Hi I wanted to know if tomcat supports session management and connection pooling if so what are the modules i have to down load. can some body point me to that url Thanks Uma -Original Message- From: Lev Assinovsky [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 8:49 AM

FW: Does tomcat support session management and connection pooling

2002-03-21 Thread Uma Munugala
Hi I wanted to know if tomcat supports session management and connection pooling if so what are the modules i have to down load. can some body point me to that url Thanks Uma -Original Message- From: Lev Assinovsky [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 8:49

RE: Does tomcat support session management and connection pooling

2002-03-21 Thread Andy Eastham
: Uma Munugala [mailto:[EMAIL PROTECTED]] Sent: 21 March 2002 21:23 To: '[EMAIL PROTECTED]' Subject: FW: Does tomcat support session management and connection pooling Hi I wanted to know if tomcat supports session management and connection pooling if so what are the modules i have to down

Does Tomcat maintain session values?

2002-02-07 Thread Hari S
Hi, I use JSP pages which maintain session values in a java class using JSP:useBean My pages work perfectly in other Servers. But in Tomcat, it doesn't. problem 1: it loses my session variable values and displays my pages with their default setting. worse is it loses track and displays with

Re: Does Tomcat maintain session values? Repost:

2002-02-07 Thread Hari S
Hi, Can someone address this issue. I have a nearing deadline. itz urgent. pls. Thanks Hari --- Hari S [EMAIL PROTECTED] wrote: Hi, I use JSP pages which maintain session values in a java class using JSP:useBean My pages work perfectly in other Servers. But in Tomcat, it doesn't.

FW: Tomcat 4.0 Session Timeout

2001-09-20 Thread Jim Urban
OK, I've spent the 30 minutes browsing the Tomcat 4.0 documentation and I can't find it. How do I set the session time out for a context in Tomcat 4.0. The session time out is defaulting to 18000 seconds (5 hours?). I have tried adding the following to both my context's WEB-INF/web.xml file

Re: Tomcat 4.0 Session Timeout

2001-09-20 Thread Jonathan Eric Miller
OK. Jon - Original Message - From: Jim Urban [EMAIL PROTECTED] To: Tomcat-User [EMAIL PROTECTED] Sent: Thursday, September 20, 2001 7:15 AM Subject: FW: Tomcat 4.0 Session Timeout OK, I've spent the 30 minutes browsing the Tomcat 4.0 documentation and I can't find it. How do I set

RE: Tomcat 4.0 Session Timeout

2001-09-20 Thread Jim Urban
] Subject: Re: Tomcat 4.0 Session Timeout I haven't tested this using the configuration files or not, so, I can't verify whether that's a problem or not, but, failing that, you can use HttpSession.setMaxInactiveInterval() from within your Web application. Actually, I should probably test this myself

Tomcat 4.0 Session Timeout

2001-09-20 Thread Jim Urban
do I set the session time out for a context in Tomcat 4.0. The session time out is defaulting to 18000 seconds (5 hours?). I have tried adding the following to both my context's WEB-INF/web.xml file and the $CATALINA_HOME/conf/web.xml file but both are ignored. session-config session

Re: Tomcat 4.0 Session Timeout

2001-09-20 Thread Elm Gysel
of inactivity... How do I set the session time out for a context in Tomcat 4.0. The session time out is defaulting to 18000 seconds (5 hours?). I have tried adding the following to both my context's WEB-INF/web.xml file and the $CATALINA_HOME/conf/web.xml file but both are ignored. session

RE: Tomcat 4.0 Session Timeout

2001-09-20 Thread Jim Urban
, 2001 9:43 AM To: [EMAIL PROTECTED] Subject: Re: Tomcat 4.0 Session Timeout If you have changed session-timeout and restarted the server then it should work. How are you noticing that your session is still active? Elm - Original Message - From: Jim Urban [EMAIL PROTECTED] To: [EMAIL

RE: Tomcat 4.0 Session Timeout

2001-09-20 Thread Jim Urban
Yes, many times. Jim -Original Message- From: Elm Gysel [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 20, 2001 10:14 AM To: [EMAIL PROTECTED] Subject: Re: Tomcat 4.0 Session Timeout I also ask the session its timeout value and it still says 18000 seconds. Thats weird tho, did

Re: Tomcat 4.0 Session Timeout

2001-09-20 Thread Vladimir Grishchenko
Can you use HttpSession.setMaxInactiveInterval(int) method to set it at runtime? --V. - Original Message - From: Jim Urban [EMAIL PROTECTED] To: Tomcat-User [EMAIL PROTECTED] Sent: Thursday, September 20, 2001 9:52 AM Subject: Tomcat 4.0 Session Timeout I've now asked this three

RE: Tomcat 4.0 Session Timeout

2001-09-20 Thread Jim Urban
4.0 Session Timeout Can you use HttpSession.setMaxInactiveInterval(int) method to set it at runtime? --V. - Original Message - From: Jim Urban [EMAIL PROTECTED] To: Tomcat-User [EMAIL PROTECTED] Sent: Thursday, September 20, 2001 9:52 AM Subject: Tomcat 4.0 Session Timeout I've now

Re: Tomcat 4.0 Session Timeout

2001-09-20 Thread Vladimir Grishchenko
It's not a TC feature, it's in servlet spec, and it was there at least since 2.1. --V. - Original Message - From: Jim Urban [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 20, 2001 10:34 AM Subject: RE: Tomcat 4.0 Session Timeout I can, but this defeats the purpose

RE: Tomcat 4.0 Session Timeout

2001-09-20 Thread Jim Urban
: Thursday, September 20, 2001 1:22 PM To: [EMAIL PROTECTED] Subject: Re: Tomcat 4.0 Session Timeout It's not a TC feature, it's in servlet spec, and it was there at least since 2.1. --V. - Original Message - From: Jim Urban [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday

RE: Tomcat 4.0 Session Timeout

2001-09-20 Thread John Dell
, 2001 11:32 AM To: [EMAIL PROTECTED] Subject: RE: Tomcat 4.0 Session Timeout Fine, its not a feature, it's part of the servlet spec. The problem is, I can't get it to work and no-one seems to be able to offer me any suggestions as to why its not working, or how to get it working. Jim

RE: Tomcat 4.0 Session Timeout

2001-09-20 Thread Craig R. McClanahan
:53 -0700 From: John Dell [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: Tomcat 4.0 Session Timeout Jim, You ought to check your attitude at the door. This is an volunteer user support forum. Noone is being paid to help you solve your problems. If you

RE: Tomcat 4.0 Session Timeout

2001-09-20 Thread Jim Urban
else (to get my question answered) except this is the only place I know to get help running Tomcat. Jim -Original Message- From: John Dell [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 20, 2001 1:53 PM To: [EMAIL PROTECTED] Subject: RE: Tomcat 4.0 Session Timeout Jim, You ought

RE: Tomcat 4.0 Session Timeout

2001-09-20 Thread John Dell
- From: Jim Urban [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 20, 2001 12:10 PM To: [EMAIL PROTECTED] Subject: RE: Tomcat 4.0 Session Timeout John, I would not have an attitude except for the fact that I starting asking this question yesterday afternoon and have not yet received an answer

RE: Tomcat 4.0 Session Timeout

2001-09-20 Thread andrewdrobson
of configuring Tomcat to set it for me. Was this feature removed or just moved in 4.0? Jim -Original Message- From: Vladimir Grishchenko [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 20, 2001 12:27 PM To: [EMAIL PROTECTED] Subject: Re: Tomcat 4.0 Session Timeout Can you use

RE: Tomcat 4.0 Session Timeout

2001-09-20 Thread Jim Urban
web.xml wrong? Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Thursday, September 20, 2001 3:44 PM To: [EMAIL PROTECTED] Subject: RE: Tomcat 4.0 Session Timeout Hi, What's 300 x 60? ;-) The session timeout is specified

RE: Tomcat 4.0 Session Timeout

2001-09-20 Thread Craig R. McClanahan
On Thu, 20 Sep 2001, Jim Urban wrote: Date: Thu, 20 Sep 2001 16:34:43 -0500 From: Jim Urban [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: Tomcat 4.0 Session Timeout Andy, The session timeout is specified in minutes not seconds The comment

Re: Tomcat 4.0 Session Timeout

2001-09-19 Thread Richard P
connectionTimeout=6 / try that connectionTimeout setting there. --- Jim Urban [EMAIL PROTECTED] wrote: OK, I've spent the last 30 minutes browsing the Tomcat 4.0 documentation and I can't find it. How do I set the session time out for a context in Tomcat 4.0. The session time out is defaulting

Re: Tomcat 4.0 Session Timeout

2001-09-19 Thread Richard P
for a context in Tomcat 4.0. The session time out is defaulting to 18000 seconds (5 hours?). I have tried adding the following to both my context's WEB-INF/web.xml file and the $CATALINA_HOME/conf/web.xml file but both are ignored. session-config session-timeout300/session

tomcat 3.2.2 session already invalidated-serious problem

2001-06-26 Thread Its Me.. Karthik
Hi, im usuing tomcat 3.2.1..when i invalidate my session im getting error.. this is my piece of code if(monitor.containsKey(uname)){ HttpSession oldSession = (HttpSession)monitor.get(uname); oldSession.invalidate(); } the error is Internal Servlet Error:javax.servlet.ServletException:

Re: tomcat 3.2.2 session already invalidated-serious problem

2001-06-26 Thread Jeff Kilbride
: Its Me.. Karthik [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 26, 2001 3:15 AM Subject: tomcat 3.2.2 session already invalidated-serious problem Hi, im usuing tomcat 3.2.1..when i invalidate my session im getting error.. this is my piece of code if(monitor.containsKey

Socket closed in Tomcat https session

2001-06-20 Thread Ang Chai Hong
Hi, I have installed Apache + mod_ssl successfully in Windows NT server and also installed Tomcat standalone correctly. I can't configure Tomcat to talk to Apache using mod_jk. After several tries and lots of searching, it is still not successfull. I decided to set up Tomcat with Direct SSL

Re:Socket closed in Tomcat https session

2001-06-20 Thread Jean-Etienne G.
You may have more info of your problem using openssl has a client to interrogate your server. Maybe you will have the same problem has me (handshake error). Hi, I have installed Apache + mod_ssl successfully in Windows NT server and also installed Tomcat standalone correctly. I can't

Tomcat 3.2.1 : Session timeout bug ??

2001-06-05 Thread Hervé Guidetti
Hi all, I'm using tomcat 3.2.1. In the tomcat/conf/web.xml file, I changed the session-timeout to 60 (meaning 60 minutes). If, in my servlet, I write : mySession.getMaxInactiveInterval() it returns 1800 (meaning 30 minutes). Is that a bug ? Do I miss something ? Is there a workaround ?

Re: Tomcat 3.2.1 : Session timeout bug ??

2001-06-05 Thread Wolle
Hello, try to set the MySession.setMaxInteracticeInterval(sec), for me it works so. Greetings, Wolle Hervé Guidetti wrote: Hi all, I'm using tomcat 3.2.1. In the tomcat/conf/web.xml file, I changed the session-timeout to 60 (meaning 60 minutes). If, in my servlet, I write :

Re: Tomcat 3.2.1 : Session timeout bug ??

2001-06-05 Thread Johnathan Smith
PLEASE TAKE ME OFF THIS LIST!!! --- Wolle [EMAIL PROTECTED] wrote: Hello, try to set the MySession.setMaxInteracticeInterval(sec), for me it works so. Greetings, Wolle Hervé Guidetti wrote: Hi all, I'm using tomcat 3.2.1. In the tomcat/conf/web.xml file, I changed the

RE: Tomcat 3.2.1 : Session timeout bug ??

2001-06-05 Thread BARRAUD Valérie
Title: RE: Tomcat 3.2.1 : Session timeout bug ?? 1/ MAIL TO [EMAIL PROTECTED] 2/ CONFIRM with the e-mail address given in the reply -Message d'origine- De: Johnathan Smith [SMTP:[EMAIL PROTECTED]] Date: mardi 5 juin 2001 15:01 À: [EMAIL PROTECTED]; [EMAIL PROTECTED] Objet: Re

tomcat and session...

2001-04-10 Thread Tomy Doomany
Hi, I've installed jakarta-tomcat-3.2.1 and tried to run a simple servlet, which worked fine. However, adding the following line caused the servlet to hang for minutes! HttpSession session = request.getSession(true); Do I need to modify any config file for session creation? Thanks, Tom

TOMCAT 3.2 + session

2001-02-28 Thread Bartsch Axel
Hi, I am using TOMCAT 3.2 (I guess this means 3.2.1) When creating a session (request.getSession(true)) within a servlet this session creation takes about 10-20s! And if you run the Netscape Browser 4.7 on the same machine as the servlet engine, the session creation takes about 1 hour: the

RE: TOMCAT 3.2 + session

2001-02-28 Thread Bartsch Axel
] Subject: TOMCAT 3.2 + session Hi, I am using TOMCAT 3.2 (I guess this means 3.2.1) When creating a session (request.getSession(true)) within a servlet this session creation takes about 10-20s! And if you run the Netscape Browser 4.7 on the same machine as the servlet engine

RE: TOMCAT 3.2 + session

2001-02-28 Thread Michael Weissenbacher
machine is the same as the servlet machine. michael -Original Message- From: Bartsch Axel [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 28, 2001 2:34 PM To: [EMAIL PROTECTED] Subject: TOMCAT 3.2 + session Hi, I am using TOMCAT 3.2 (I guess this means 3.2.1) When creating a session

AW: Apache/Tomcat 3.2.1 session error - help!

2000-12-18 Thread Hanusch, Hartwig
Hi Henri, indeed am i (trying to) use ajp13 with jk_mod but the error is reproducible with jserv to. Here are the code snipples - public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { HttpSession currentSession =