Re: url rewriting for sessions

2000-08-17 Thread Marco M
]] Sent: 16. August 2000 14:38 To: [EMAIL PROTECTED] Subject: Re: url rewriting for sessions Marco, Didi you find a solution for this, if so, care to share it with the rest of us? Marco M [EMAIL PROTECTED] on 08/16/2000 12:13:14 PM Please respond to A mailing list about Java Server

Re: url rewriting for sessions

2000-08-16 Thread Marco M
in the Servlet do u have any other possible solutions?? thanx in advance regards marco -Original Message- From: EXT Hendrik Schreiber [mailto:[EMAIL PROTECTED]] Sent: 16. August 2000 11:59 To: [EMAIL PROTECTED] Subject: Re: url rewriting for sessions Hi! URL rewriting means

Re: url rewriting for sessions

2000-08-16 Thread Khem Chand Sachdeva
I have read that if cookies r disabled on client side then the Session API in servlet will be using URL rewriting to pass the sesssion id back and forth and all this will be done automatically. SO Session API will work even if client has disabled cookie. I am not sure whether it really happens or

Re: url rewriting for sessions

2000-08-16 Thread Hendrik Schreiber
The servlet API will NOT do it automatically. You have to make sure yourself that URLs are rewritten if you need to, because cookies are disabled on the clientside. -hendrik Khem Chand Sachdeva wrote: I have read that if cookies r disabled on client side then the Session API in servlet will

Re: url rewriting for sessions

2000-08-16 Thread Marco M
hi please discard my previous message regards marco -Original Message- From: EXT Marco M [mailto:[EMAIL PROTECTED]] Sent: 16. August 2000 12:19 To: [EMAIL PROTECTED] Subject: Re: url rewriting for sessions hi Hendrik, thanx for the reply but the problem

Re: url rewriting for sessions

2000-08-16 Thread Hendrik Schreiber
Schreiber [mailto:[EMAIL PROTECTED]] Sent: 16. August 2000 11:59 To: [EMAIL PROTECTED] Subject: Re: url rewriting for sessions Hi! URL rewriting means that a URL in a page, that your JSP or servlets produces, is encoded with the method response.encodeURL(String yourURL). So

Re: url rewriting for sessions

2000-08-16 Thread Hussain Shah
: Shaheen Hussain/AMS/AMSINC) Subject: Re: url rewriting for sessions hi please discard my previous message regards marco -Original Message- From: EXT Marco M [mailto:[EMAIL PROTECTED]] Sent: 16. August 2000 12:19 To: [EMAIL PROTECTED] Subject: Re: url rewriting

Re: url rewriting for sessions

2000-08-16 Thread Doshi, Gunjan
:(bcc: Shaheen Hussain/AMS/AMSINC) Subject: Re: url rewriting for sessions hi please discard my previous message regards marco -Original Message- From: EXT Marco M [mailto:[EMAIL PROTECTED]] Sent: 16. August 2000 12:19 To: [EMAIL PROTECTED] Subject: Re

Re: url rewriting for sessions

2000-08-16 Thread Joe Hanink
- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Hendrik Schreiber Sent: Wednesday, August 16, 2000 3:28 AM To: [EMAIL PROTECTED] Subject: Re: url rewriting for sessions The servlet API will NOT do it automatically. You have to make

Re: url rewriting for sessions

2000-08-16 Thread Hendrik Schreiber
Hi! URL rewriting means that a URL in a page, that your JSP or servlets produces, is encoded with the method response.encodeURL(String yourURL). So in a JSP instead of writing: a href="someURL"target/a you should write: a href="%=response.encodeURL("someURL")%"target/a pretty much the same

url rewriting for sessions

2000-08-15 Thread Joe Hanink
Questions about URL Rewriting: what exactly is this and how is it done? what does the server do, and what is programmed? i've read that sessions tied to cookies can fail due to client side settings. url-rewriting was indicated as the workaround. do you build an adapted url or is it automated