Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

java servlets session call

//force creation of new session
HttpSession session = req.getSession(true); 
//get session if active, return null otherwise
HttpSession session = req.getSession(false); 
 
PREVIOUS NEXT
Tagged: #java #servlets #session #call
ADD COMMENT
Topic
Name
2+4 =