Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Request forwarding from servlet to jsp's in a frameset

843836Jun 3 2004 — edited Jun 3 2004
I am trying to forward request to a jsp containing a frameset . I am also setting a request attribute in the servlet- the arraylist.

I know that jsp's in each of the frames have their own requests. So I tried using jsp:include in the frame src , .i.e,

<FRAMESET rows="80,*" frameborder="yes" border="1" framespacing="0" >
<FRAME name="topFrame" scrolling="NO" noresize src="/resnet/jsp/squash/common/resnetheader.html" >
<FRAMESET cols="*,588" frameborder="yes" border="1" framespacing="0" rows="*">
<FRAME name="mainFrame" scrolling="yes"
src=<jsp:include page="membertypeupdationlist.jsp"/> >
<FRAME name="rightFrame" scrolling="no" noresize
src=<jsp:include page="membertypeupdationdetails.jsp"/> >
</FRAMESET>
</FRAMESET>

Now I am able to access the request attribute from the membertypeupdationlist.jsp , but the page is not getting displayed instead shows Error with Status code 404.

Can anybody help in this regard. At times I need to use request scope for my data and not session scope and also I need to use framesets.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 1 2004
Added on Jun 3 2004
6 comments
211 views