Session in java file
How should i set session in a Java file, not a servlet. Had it been jsp I could have used the implicit object, What should I do?.
Please help,
Thanks
Message was edited by:
Zoram
How should i set session in a Java file, not a servlet. Had it been jsp I could have used the implicit object, What should I do?.
Please help,
Thanks
Message was edited by:
Zoram
You need the HttpServletRequest object which is passed to JSPs and Servlets when they are invoked. How you are going to get it depends how the methods of your class are invoked. You probably need to pass it as a parameter from the JSP or Servlet that invokes the method.