Re: Where to find session cookies

2007-06-28 Thread Johnny Kewl
, 2007 3:13 PM Subject: Re: Where to find session cookies -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Johnny, Johnny Kewl wrote: I think they actually referring to Session cookies, and making Tomcat never timeout a session. TC will eventually timeout a session unless it is still in use. Just

Re: Where to find session cookies

2007-06-28 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Johnny, Johnny Kewl wrote: True, although I dont know how to make Tomcat do that Do what? nor do I think it should be done, they must expire, or else with time his Tomcat will run out of memory. What are you talking about? Tomcat doesn't store

Re: Where to find session cookies

2007-06-28 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Johnny, Johnny Kewl wrote: I think they actually referring to Session cookies, and making Tomcat never timeout a session. TC will eventually timeout a session unless it is still in use. Just because the cookie has no expiration doesn't mean that

RE: Where to find session cookies

2007-06-28 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:[EMAIL PROTECTED] Subject: Re: Where to find session cookies in the ops first question he was asking about session timeouts... and making them last forever. I must have totally missed that. You didn't miss anything - Johnny K made that up. The OP

Re: Where to find session cookies

2007-06-27 Thread Johnny Kewl
, June 26, 2007 9:12 PM Subject: RE: Where to find session cookies How can I configure Tomcat to use permanent cookies as opposed to session cookies? One of the reasons I'd like to know is to see the behavior of method isNew() of HttpSession, which I can do if I'm able to disable cookies

RE: Where to find session cookies

2007-06-27 Thread Nelson, Tracy M.
| From: lightbulb432 [mailto:[EMAIL PROTECTED] | Sent: Tuesday, 26 June, 2007 14:13 | | How can I configure Tomcat to use permanent cookies as opposed to session | cookies? One of the reasons I'd like to know is to see the behavior of | method isNew() of HttpSession, which I can do if I'm able to

Re: Where to find session cookies

2007-06-27 Thread Johnny Kewl
, June 27, 2007 7:21 PM Subject: RE: Where to find session cookies | From: lightbulb432 [mailto:[EMAIL PROTECTED] | Sent: Tuesday, 26 June, 2007 14:13 | | How can I configure Tomcat to use permanent cookies as opposed to session | cookies? One of the reasons I'd like to know is to see the behavior

RE: Where to find session cookies

2007-06-27 Thread Caldarale, Charles R
From: Johnny Kewl [mailto:[EMAIL PROTECTED] Subject: Re: Where to find session cookies True, although I dont know how to make Tomcat do that, nor do I think it should be done, they must expire, or else with time his Tomcat will run out of memory. ??? Why do you think Tomcat will run out

Re: Where to find session cookies

2007-06-27 Thread Johnny Kewl
- Original Message - From: Caldarale, Charles R [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Wednesday, June 27, 2007 8:53 PM Subject: RE: Where to find session cookies From: Johnny Kewl [mailto:[EMAIL PROTECTED] Subject: Re: Where to find session cookies

RE: Where to find session cookies

2007-06-26 Thread lightbulb432
How can I configure Tomcat to use permanent cookies as opposed to session cookies? One of the reasons I'd like to know is to see the behavior of method isNew() of HttpSession, which I can do if I'm able to disable cookies. As the Javadoc for HttpSession says: A servlet should be able to handle

RE: Where to find session cookies

2007-06-26 Thread Fargusson.Alan
To: users@tomcat.apache.org Subject: RE: Where to find session cookies How can I configure Tomcat to use permanent cookies as opposed to session cookies? One of the reasons I'd like to know is to see the behavior of method isNew() of HttpSession, which I can do if I'm able to disable cookies

Re: Where to find session cookies

2007-06-26 Thread Venkatesh Babu
@tomcat.apache.org Sent: Wednesday, June 27, 2007 12:42:36 AM Subject: RE: Where to find session cookies How can I configure Tomcat to use permanent cookies as opposed to session cookies? One of the reasons I'd like to know is to see the behavior of method isNew() of HttpSession, which I can do if I'm able

RE: Where to find session cookies

2007-05-29 Thread Caldarale, Charles R
From: lightbulb432 [mailto:[EMAIL PROTECTED] Subject: Where to find session cookies When testing my application that uses sessions, I don't seem to see a cookie with domain localhost in my browser's cookies folder. Does Tomcat use some internal folder to put its cookies, Think about what

Re: Where to find session cookies

2007-05-29 Thread ROOKIE
it stores it. Vinod - Original Message From: Caldarale, Charles R [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Wednesday, May 30, 2007 1:02:06 AM Subject: RE: Where to find session cookies From: lightbulb432 [mailto:[EMAIL PROTECTED] Subject: Where to find

Re: Where to find session cookies

2007-05-29 Thread Pid
lightbulb432 wrote: When testing my application that uses sessions, I don't seem to see a cookie with domain localhost in my browser's cookies folder. Does Tomcat use some internal folder to put its cookies, or am I just doing something else wrong? Where your browser stores it's cookies is

RE: Where to find session cookies

2007-05-29 Thread Fargusson.Alan
Session cookies are not stored on disk. This is why they are more secure then cookies (non-session). Since they only exist in RAM (ok, maybe in swap files) nobody else using that machine can find them, and they go away when the browser ends. -Original Message- From: lightbulb432