Re: Session lost on netscape, mozilla and firefox, but not IE and Opera

2005-02-14 Thread Robert Hunt


If you've got a Valve 
className=org.apache.catalina.valves.RequestDumperValve/ defined for the 
Engine/ node in server.xml for your Tomcat installation, you should be able 
to see cookies being passed in HTTP requests:
==
2005-02-02 10:30:39 RequestDumperValve[engine]: REQUEST URI 
=/calendar/DownloadEvents
2005-02-02 10:30:39 RequestDumperValve[engine]: authType=null
2005-02-02 10:30:39 RequestDumperValve[engine]: characterEncoding=null
2005-02-02 10:30:39 RequestDumperValve[engine]: 
cookie=n.gp.8c52f99421cdaa97=20050123
2005-02-02 10:30:39 RequestDumperValve[engine]: 
cookie=n.gp.01a0d577f34f043b=20050319
2005-02-02 10:30:39 RequestDumperValve[engine]: header=accept=*/*
2005-02-02 10:30:39 RequestDumperValve[engine]: header=accept-language=en-us
2005-02-02 10:30:39 RequestDumperValve[engine]: header=accept-encoding=gzip, 
deflate
   :::
2005-02-02 10:30:39 RequestDumperValve[engine]: requestedSessionId=null
2005-02-02 10:30:39 RequestDumperValve[engine]: scheme=http
2005-02-02 10:30:39 RequestDumperValve[engine]: serverName=sample.com
2005-02-02 10:30:39 RequestDumperValve[engine]: serverPort=80
2005-02-02 10:30:39 RequestDumperValve[engine]: 
servletPath=/calendar/DownloadEvents
2005-02-02 10:30:39 RequestDumperValve[engine]: isSecure=false
== 

The cookies in the above sample are app-specific and not Tomcat session 
cookies, but give the general idea.


You should also check the security settings/preferences of the browsers in 
question as such settings can constrain the browser's use of cookies.

Re: Session lost on netscape, mozilla and firefox, but not IE and Opera

2005-02-13 Thread Uwe Kubosch
I just did a test with Opera, and it works with Opera.

So current status is:

Session lost on netscape, mozilla and firefox on Linux, but not IE on
windoze and Opera on Linux.

With kind regards,
Uwe Kubosch


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Session lost on netscape, mozilla and firefox, but not IE and Opera

2005-02-13 Thread Uwe Kubosch
On Sun, 2005-02-13 at 15:01 +0100, Uwe Kubosch wrote:
 I just did a test with Opera, and it works with Opera.

Analyzed input from Opera, and I can find the JSESSIONID cookie, so I am
positive that it is missing when using firefox, mozilla and netscape.

Any ideas on how to fix this?


Uwe


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Session lost on netscape, mozilla and firefox, but not IE and Opera

2005-02-13 Thread Robert Hunt
If you've got a Valve 
className=org.apache.catalina.valves.RequestDumperValve/ defined for the 
Engine/ node in server.xml for your Tomcat installation, you should be able 
to see cookies being passed in HTTP requests:
==
2005-02-02 10:30:39 RequestDumperValve[engine]: REQUEST URI 
=/calendar/DownloadEvents
2005-02-02 10:30:39 RequestDumperValve[engine]: authType=null
2005-02-02 10:30:39 RequestDumperValve[engine]: characterEncoding=null
2005-02-02 10:30:39 RequestDumperValve[engine]: 
cookie=n.gp.8c52f99421cdaa97=20050123
2005-02-02 10:30:39 RequestDumperValve[engine]: 
cookie=n.gp.01a0d577f34f043b=20050319
2005-02-02 10:30:39 RequestDumperValve[engine]: header=accept=*/*
2005-02-02 10:30:39 RequestDumperValve[engine]: header=accept-language=en-us
2005-02-02 10:30:39 RequestDumperValve[engine]: header=accept-encoding=gzip, 
deflate
   :::
2005-02-02 10:30:39 RequestDumperValve[engine]: requestedSessionId=null
2005-02-02 10:30:39 RequestDumperValve[engine]: scheme=http
2005-02-02 10:30:39 RequestDumperValve[engine]: serverName=sample.com
2005-02-02 10:30:39 RequestDumperValve[engine]: serverPort=80
2005-02-02 10:30:39 RequestDumperValve[engine]: 
servletPath=/calendar/DownloadEvents
2005-02-02 10:30:39 RequestDumperValve[engine]: isSecure=false
==

The cookies in the above sample are app-specific and not Tomcat session 
cookies, but give the general idea.


You should also check the security settings/preferences of the browsers in 
question as such settings can constrain the browser's use of cookies.

Re: Session lost on netscape, mozilla and firefox, but not IE and Opera

2005-02-13 Thread sven morales
Hi, 
   Another tool is TCPMON tool from Apache Axis
project, its an applet.  This allows you to see the
the request response
between client and Tomcat.

aka_sergio
--- Robert Hunt [EMAIL PROTECTED] wrote:

 If you've got a Valve

className=org.apache.catalina.valves.RequestDumperValve/
 defined for the Engine/ node in server.xml for
 your Tomcat installation, you should be able to see
 cookies being passed in HTTP requests:

==
 2005-02-02 10:30:39 RequestDumperValve[engine]:
 REQUEST URI =/calendar/DownloadEvents
 2005-02-02 10:30:39 RequestDumperValve[engine]:
 authType=null
 2005-02-02 10:30:39 RequestDumperValve[engine]:
 characterEncoding=null
 2005-02-02 10:30:39 RequestDumperValve[engine]:
 cookie=n.gp.8c52f99421cdaa97=20050123
 2005-02-02 10:30:39 RequestDumperValve[engine]:
 cookie=n.gp.01a0d577f34f043b=20050319
 2005-02-02 10:30:39 RequestDumperValve[engine]:
 header=accept=*/*
 2005-02-02 10:30:39 RequestDumperValve[engine]:
 header=accept-language=en-us
 2005-02-02 10:30:39 RequestDumperValve[engine]:
 header=accept-encoding=gzip, deflate
::   
 :
 2005-02-02 10:30:39 RequestDumperValve[engine]:
 requestedSessionId=null
 2005-02-02 10:30:39 RequestDumperValve[engine]:
 scheme=http
 2005-02-02 10:30:39 RequestDumperValve[engine]:
 serverName=sample.com
 2005-02-02 10:30:39 RequestDumperValve[engine]:
 serverPort=80
 2005-02-02 10:30:39 RequestDumperValve[engine]:
 servletPath=/calendar/DownloadEvents
 2005-02-02 10:30:39 RequestDumperValve[engine]:
 isSecure=false

==
 
 The cookies in the above sample are app-specific and
 not Tomcat session cookies, but give the general
 idea.
 
 
 You should also check the security
 settings/preferences of the browsers in question as
 such settings can constrain the browser's use of
cookies.




__ 
Do you Yahoo!? 
Yahoo! Mail - Easier than ever with enhanced search. Learn more.
http://info.mail.yahoo.com/mail_250

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]