Antwort: Re: Antwort: session creation?

2001-02-15 Thread ralf.bode
Hi, try to take this code in your baseclass (assuming the name ist MyServlet) of all your servletclasses. The performRequest-method must be called directly from the doPost ()-Method. If you are using only one (Dispatcher-)Servlet, you have to work out the Requests from the Login-Page and to reac

Antwort: session creation?

2001-02-15 Thread ralf.bode
Hi, to create a user-session you may try the following code in the doGet (...)/doPost (...) - handling-Methods : HttpSession oSession = roRequest.getSession (false); // try to get an exisiting session if (oSession != null) { // OK, anyone is been conne