Re: [Webware-devel] Path Based Session in WebKit

2001-08-03 Thread Geoff Talvola
At 11:08 PM 8/2/01 +0200, Heiko Hees wrote: > > I don't think extraURLPath will help him -- (my impression is that) he > > wants to use the current Servlet path mechanism, but with the SID at > > the root of that path. > >that is right, the advantage is, that one can write simple links like >href=

RE: [Webware-devel] Path Based Session in WebKit

2001-08-03 Thread Love, Jay
Oh, OK. I see the point now. As long as you use relative paths in your document, the session is there. Nice. Jay > -Original Message- > From: Geoff Talvola [mailto:[EMAIL PROTECTED]] > Sent: Friday, August 03, 2001 3:33 PM > To: [EMAIL PROTECTED] > Subject: Re: [Webw

RE: [Webware-devel] Path Based Session in WebKit

2001-08-02 Thread Love, Jay
This will probably be easier than you think. We already have the code in place to handle "extra path info" URLs. You just need to enable it in Application.config, then parse the "extraURLPath" property of the Request object. I suggest handling all this in HTTPRequest.sessionID(). You just need

RE: [Webware-devel] Path Based Session in WebKit

2001-08-02 Thread Ian Bicking
"Love, Jay" <[EMAIL PROTECTED]> wrote: > This will probably be easier than you think. We already have the code in > place to handle "extra path info" URLs. You just need to enable it in > Application.config, then parse the "extraURLPath" property of the Request > object. I suggest handling all

Re: [Webware-devel] Path Based Session in WebKit

2001-08-02 Thread Heiko Hees
> I don't think extraURLPath will help him -- (my impression is that) he > wants to use the current Servlet path mechanism, but with the SID at > the root of that path. that is right, the advantage is, that one can write simple links like href=OtherPage instead of href=OtherPage?_SID_=xyz or hre