i looked up a post across this forum wherefrom i came to know that there is diffrence between
JSP and
servlet in how the server deploy both.
i mean to say that, when JSP/servlet deployed in server frequently , i am not sure which one of two is served in a new startup of server every time?
or is it just a bitter confusion in my mind?
here it would more descriptive with this issue.
there are two JSP pages say page1.jsp and page2.jsp. suppose in a server startup, few objects has been stored as session attribute and jsp2.jsp has been called using
getAppletContext().showDocument() method from within page1.jsp. at this time few objects stored in session are accessed inside page2.jsp.
now in same server startup and another cycle few of objects has been edited and stored in the same session and page2.jsp called again using
getAppletContext().showDocument() method from within page1.jsp.
now my question is, for second cycle why the session.getAttribute("object") display old value instead of new one for objects those have been changed?
regards
san