I have a servlet. In my doPost method, I am trying to set some attributes in Session.
session = req.getSession(false) is resulting in session value being null. So, am not able to set anything in it. At what stage of my servlet will I be able to access session and store some attributes in it?
|
|
|||||
|
|
There is nothing like stage to create session in a From Javadoc, There are two methods to create
and Here you are passing false in When creating a Session first time Use |
|||
|
|
