Hi, members:


I am using NT OS and JRUN servlet 2.2 package.  The problem is

I use a servlet as the  controller and set the objects depending on this
controller's evaluation output
by using HttpSession.setAttribute(obj_ID, obj_itself), then using
forward(request, response) to the different jsp pages.

One jsp page, named "main" contains three frames (named "top_pane" "left_pane",
"right_pane" )and one iframe named " inline_frm" which is
nested inside "top_pane" and its visibility is determined by some output from
"top_pane".  In the "main" jsp, program has checked whether
or not the object passed by servlet is indeed coming by using
myOBJClass  obj = (myOBJClass) session.getAttribute(obj_ID);
if (obj==null){
   report to an err.log file...;
}

Everything is fine so far.

BUT when "top_pane" does the same check-in, the result is : I got error message
in my err.log file reporting that obj is null.


Can anybody give me a light?

Thank you

hongda

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to