FW: String added to session in servlet not available in jsp

2003-10-09 Thread erlis
I really sorry the last message I sent it by mistake, is difficult to me write code in outlook ;) well Try this HttpSession session = request.getSession(true); String username = request.getParameter(username) if ( username == null ) username = noParameter; if ( .equals( username ) )

Re: FW: String added to session in servlet not available in jsp

2003-10-09 Thread rudidoku
No worries. I added the following to doPost in my servlet: HttpSession session = request.getSession(true); String username = request.getParameter(username); if ( username == null ) username = noParameter; if ( .equals( username ) ) username = noParameter;

RE: FW: String added to session in servlet not available in jsp

2003-10-09 Thread Ralph Einfeldt
Frames with sessions can be a complicated beast if cookies are disabled: - First make shure that you encode all frame url's in the top level framset. Otherwise each frame will get his own session. - After that make shure that all frames keep in sync with the session id. The simple design