Thanks I got the problem.  You are right the servlet spec says the
JSESSIONID should be after the contextpath.

Thanks.


----- Original Message -----
From: "Jacky Cheung" <[EMAIL PROTECTED]>
To: "Orion-Interest" <[EMAIL PROTECTED]>
Sent: Thursday, May 24, 2001 11:52 PM
Subject: Re: help jsession problem -urgent


> Kesav,
>
> It seems that your are using url rewriting to track sessions. According to
> the Servlet specification, for session tracking using URL rewriting, a
path
> parameter should be added. I think the url should be...
>
> http://localhost/vms/servlet/Logout;JSESSIONID=xxxxx?fileName=blah
>
> You can find the information in SRV.7.1.3 in the specification of Servlet
> 2.3 PFD2.
>
> Best regards,
> Jacky
>
> ----- Original Message -----
> From: "Jeff Hubbach" <[EMAIL PROTECTED]>
> To: "Orion-Interest" <[EMAIL PROTECTED]>
> Sent: Friday, May 25, 2001 12:35 PM
> Subject: Re: help jsession problem -urgent
>
>
> > Kesav,
> >
> > Do you mean to have the URL:
> > http://localhost/vms/servlet/Logout?fileName=blah;JSESSIONID=xxxxx
> > ??
> >
> > It looks like you have a semicolon where an ampersand should be:
> > http://localhost/vms/servlet/Logout?fileName=blah&JSESSIONID=xxxxx
> >
> > The correct method of separating multiple URL parameters is with an
> > ampersand,
> > not a semicolon as you sent.
> >
> > Jeff Hubbach
> >
> > On Thu, 24 May 2001 19:16:14 -0700
> > Kesav Kumar <[EMAIL PROTECTED]> wrote:
> >
> > >I am using a URL
> > >http://localhost/vms/servlet/Logout?fileName=blah;JSESSIONID=xxxxx
> > >
> > >In my servlet I am accessing the fileName by
> > >request.getParameter("fileName")
> > >I am getting the following value 1;JSESSIONID=xxxxx
> > >
> > >Why doesn't orion strips out the jessionid from the name value paris of
> > the
> > >request.  It seems it is happening in the new version only.
> > >
> > >I am using 1.5.1 version.  I haven't seen this problem in the previous
> > >versions.  Is there some thing I am missing or is it a bug?
> > >
> > >Thanks.
> > >
> > >Kesav Kumar
> > >Software Engineer
> > >Voquette, Inc.
> > >650 356 3740
> > >mailto:[EMAIL PROTECTED]
> > >http://www.voquette.com
> > >Voquette...Delivering Sound Information
> > >
> > >
> >
> >
> > --
> > Jeff Hubbach
> > [EMAIL PROTECTED]
> >
> >
> >
>
>

Reply via email to