You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by ru...@xs4all.nl on 2003/10/09 16:43:40 UTC

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: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org