Re: does tomcat automatically revert to url rewriting...

2002-11-23 Thread jfc
Craig R. McClanahan wrote: On Fri, 22 Nov 2002, jfc wrote: Date: Fri, 22 Nov 2002 11:11:28 + From: jfc <[EMAIL PROTECTED]> Reply-To: Tomcat Users List <[EMAIL PROTECTED]> To: Tomcat Users List <[EMAIL PROTECTED]> Subject: Re: does tomcat automatically revert to url rew

Re: does tomcat automatically revert to url rewriting...

2002-11-22 Thread Craig R. McClanahan
On Fri, 22 Nov 2002, jfc wrote: > Date: Fri, 22 Nov 2002 11:11:28 + > From: jfc <[EMAIL PROTECTED]> > Reply-To: Tomcat Users List <[EMAIL PROTECTED]> > To: Tomcat Users List <[EMAIL PROTECTED]> > Subject: Re: does tomcat automatically revert to url rewriting

RE: does tomcat automatically revert to url rewriting...

2002-11-22 Thread Price, Erik
> -Original Message- > From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] > Sent: Thursday, November 21, 2002 8:05 PM > To: Tomcat Users List > Subject: Re: does tomcat automatically revert to url rewriting... > > > > > We also need to remember t

Re: does tomcat automatically revert to url rewriting...

2002-11-22 Thread jfc
Craig R. McClanahan wrote: On Fri, 22 Nov 2002, jfc wrote: Will tomcat *automatically* go through the effort of rewriting the URL if the session *cannot* be persisted via the cookie?(i.e. do I need to watch for clients that don't support cookies or can I rest assured that tomcat knows whether

Re: does tomcat automatically revert to url rewriting...

2002-11-21 Thread Craig R. McClanahan
On Fri, 22 Nov 2002, jfc wrote: > > Will tomcat *automatically* go through the effort of rewriting the URL > if the session *cannot* be persisted via the cookie?(i.e. do I need to > watch for clients that don't support cookies or can I rest assured that > tomcat knows whether or not a request ha

Re: does tomcat automatically revert to url rewriting...

2002-11-21 Thread Tim Funk
jfc wrote: Tim Funk wrote: To use URL rewriting all your URLS must first wrapped in response.encodeRedirectURL() So does this mean that tomcat does not automatically do the encoding in the absence of cookies? If you use response.encodeRedirectURL(), it will. But if your URL's are not wrapp

Re: does tomcat automatically revert to url rewriting...

2002-11-21 Thread jfc
watch for clients that don't support cookies or can I rest assured that tomcat knows whether or not a request has a cookie and so when cookies are not there then it encodes each request for me?) jfc wrote: Hi I'm using struts1.1b2, tomcat 406 and jboss3 1. Does tomcat automatically

Re: does tomcat automatically revert to url rewriting...

2002-11-21 Thread Tim Funk
can be persisted via the cookie. jfc wrote: Hi I'm using struts1.1b2, tomcat 406 and jboss3 1. Does tomcat automatically revert to url rewriting when the browser doesn't support cookies? 2. If not, do I have to do something to enforce url rewriting? I want to do whatever it take

does tomcat automatically revert to url rewriting...

2002-11-21 Thread jfc
Hi I'm using struts1.1b2, tomcat 406 and jboss3 1. Does tomcat automatically revert to url rewriting when the browser doesn't support cookies? 2. If not, do I have to do something to enforce url rewriting? I want to do whatever it takes to track sessions in my application. jf