RE: [tobago] Can we hide the session id on the URL?

2007-04-13 Thread Wong, Emmanuel \(Sam\)
. -Original Message- From: Scott O'Bryan [mailto:[EMAIL PROTECTED] Sent: Thursday, April 12, 2007 1:04 PM To: MyFaces Discussion Subject: Re: [tobago] Can we hide the session id on the URL? It's NOT in the web.xml. It's container specific and controls the behavior of the encodeURL method

Re: [tobago] Can we hide the session id on the URL?

2007-04-12 Thread Mike Kienenberger
This is a standard issue with servlet applications. One solution is to track the original ip address in the session, and reject any requests that come from a different ip address. Another solution is to configure your container/application to store session information in cookies instead of the

RE: [tobago] Can we hide the session id on the URL?

2007-04-12 Thread Wong, Emmanuel \(Sam\)
To: MyFaces Discussion Subject: Re: [tobago] Can we hide the session id on the URL? This is a standard issue with servlet applications. One solution is to track the original ip address in the session, and reject any requests that come from a different ip address. Another solution is to configure your

Re: [tobago] Can we hide the session id on the URL?

2007-04-12 Thread Mike Kienenberger
, April 12, 2007 12:10 PM To: MyFaces Discussion Subject: Re: [tobago] Can we hide the session id on the URL? This is a standard issue with servlet applications. One solution is to track the original ip address in the session, and reject any requests that come from a different ip address. Another

Re: [tobago] Can we hide the session id on the URL?

2007-04-12 Thread Scott O'Bryan
/application to store session information in cookies instead of the url? is it on the web.xml file? Thanks. -Original Message- From: Mike Kienenberger [mailto:[EMAIL PROTECTED] Sent: Thursday, April 12, 2007 12:10 PM To: MyFaces Discussion Subject: Re: [tobago] Can we hide the session id