Hi ,
I am facing problem because POST button on my
JSP is opening a new session of the
servlet.
Architecture:
==============
First client goes to a Servlet thru URL . The Servlet initializes some beans and calls JSP to dynamically build the data . The JSP happens to contain a submit button with POST method . JSP calls the same servlet .
The problem is , When JSP calls the servlet , all session variables are lost because the session is new . This I am
testing by session.isNew() function.
Can someone tell me how to get to the same session , by using POST method in JSP.
Txs,