Re: session problem

2005-10-21 Thread David Won
Tim Funk <[EMAIL PROTECTED]> wrote: Cookies might be blocked on the other pc's browser -Tim David Won wrote: > I developed a very simple project, there is a jsp page and a servlet. > > In servlet: session.setAttribute("my","abc"); > > In jsp: String m

RE: session problem

2005-10-21 Thread David Won
quest.getSession().setAttribute("my","abc"); In jsp: String myString = (String)request.getSession().getAttribute("my"); Mauricio Fernández A. Ingeniero de Sistemas U. Autónoma de Manizales -Mensaje original- De: David Won [mailto:[EMAIL PROTECTED] Enviado

session problem

2005-10-20 Thread David Won
I developed a very simple project, there is a jsp page and a servlet. In servlet: session.setAttribute("my","abc"); In jsp: String mystring = (String) session.getAttribute("my"); This project works perfect in one of my PC, but when I deployed it to another PC, "mystring" in jsp always gets a n