Yoav,

Very good point. The sessionid from the servlet is different to the one in
the browser, as shown below.

Ser: 1DFADA80613F3BE01C86A5C6DE2501A8
jsp: AEAE6C4879702A3CF4254FF85B778D81

Rudi
>
> Howdy,
> If you display the session ID before adding the user name, and then in
> your JSP as you already do, are they the same session?
>
> Yoav Shapira
> Millennium ChemInformatics
>
>
>>-----Original Message-----
>>From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
>>Sent: Thursday, October 09, 2003 10:44 AM
>>To: [EMAIL PROTECTED]
>>Subject: String added to session in servlet not available in jsp
>>
>>Hi,
>>
>>I created a session object and added a string (username) to it.
>>Systemout.println shows the username from the request. My page is then
>>forwarded to another as follows:
>>
>>        RequestDispatcher disp = ctx.getRequestDispatcher(target);
>>        disp.forward(request, response);
>>
>>On this jsp page, I have teh following code:
>>
>>  String usr = (String)session.getAttribute("usr");
>>  out.println("User: " + usr + "!");
>>  out.println("Session Id:  " + session.getId());
>>
>>The page displays the session Id but not the usr.
>>
>>I'm quite baffled at why this is the case.
>>
>>looking in google for similar problems, but any help would be much
>>appreciated!
>>
>>Rudi
>>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
> This e-mail, including any attachments, is a confidential business
> communication, and may contain information that is confidential,
> proprietary and/or privileged.  This e-mail is intended only for the
> individual(s) to whom it is addressed, and may not be saved, copied,
> printed, disclosed or used by anyone else.  If you are not the(an)
> intended recipient, please immediately delete this e-mail from your
> computer system and notify the sender.  Thank you.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to