RE: Session visibility

2002-01-29 Thread Justin Rowles
I have sessions setup for a couple of different servlets. For some reason the session that are created using one servlet are not valid in a different servlet. Is there a way to make this happen? Assuming when you say servlet you mean jsp page (which is slightly different): If they are in

RE: Session visibility

2002-01-29 Thread Jason Webber
I am using Cookies to keep the sesison information. I am using servlets to preform some autheication for a standalone program. From the standalone program(which is in Java), I also pop up a browser window and want it to login automatically to some JSP pages, in other words I want the session to

RE: Session visibility

2002-01-29 Thread Emerson
why don't you make just one servlet and from this you can foward to jsp's and all the sessions will be visible If you don't wanna put all the code in one servlet (what is right) make some classes that deal wiyh your business. At 10:47 29/1/2002 -0800, you wrote: I am using Cookies to