1 Reply Latest reply on Oct 20, 2003 5:12 AM by juha

    about storing session bean object

    normal

      in a servlet, i can store the session bean object in the http session by calling httpsession.setAttribute(...).
      Now i want to develop an user authentication system, but not use jsp&servlet.
      first time the client will send a login request, the server will save login information in one session bean object. when the client sends another request to get this information, how can i found the one i stores data?
      so I want to store session bean object in one list in the server, just like i store it in the httpsession.

      I am a freshman of j2ee, so i don't know whether this idea is correct or not.