J
Jon Rasmussen
I have a JSP that uses jsp:include to add some dynamic content.
I am using the following code:
1)
<jsp:include page="/Controller?action=topMenu">
<jsparam name="top_menu" value="displayHome" />
</jsp:include>
and
2)
<jsp:include page="/generic/topMenu.jsp">
<jsparam name="top_menu" value="viewDevices" />
</jsp:include>
When running on WebLogic 6.1 SP 5 on Unix, I am encountering problems
with the first piece of code.
In this case, the server executes JSP code that is prior to the
jsp:include tag, and returns the result from the jsp:include tag. The
rest of the page is not returned.
I have also tried to set flush=true, but the result is no different.
Both 1) and 2) run as expected on WebLogic 6.1 SP2 on PC. As far as I
can see from the Javadoc, both these versions of jsp:include should be
valid.
Any solutions or workarounds to the problem are highly appreciated.
Regards,
Jon Rasmussen
I am using the following code:
1)
<jsp:include page="/Controller?action=topMenu">
<jsparam name="top_menu" value="displayHome" />
</jsp:include>
and
2)
<jsp:include page="/generic/topMenu.jsp">
<jsparam name="top_menu" value="viewDevices" />
</jsp:include>
When running on WebLogic 6.1 SP 5 on Unix, I am encountering problems
with the first piece of code.
In this case, the server executes JSP code that is prior to the
jsp:include tag, and returns the result from the jsp:include tag. The
rest of the page is not returned.
I have also tried to set flush=true, but the result is no different.
Both 1) and 2) run as expected on WebLogic 6.1 SP2 on PC. As far as I
can see from the Javadoc, both these versions of jsp:include should be
valid.
Any solutions or workarounds to the problem are highly appreciated.
Regards,
Jon Rasmussen