jsp include problems
Hello,
I can't get the jsp include file work at Aurora (802-809). For example the following code (which works at server):
<% String heading = "heading"; %>
<%@ include file="/inc.jsp" %>
<%
incStr = "overStr";
System.out.println(incStr);
%>
</body>
</html>
, shows that the 'heading' is never used (when it actually is used in the inc.jsp) and it cannot resolve incStr, which is declared in the inc.jsp.
The web application support is enabled and the web app points to correct directory. target jdk is 1.4.1_02 (tried also with 1.4.1, 1.3.1)
The problem is only in aurora, in ariadna it works just fine.
--
tuomas
Please sign in to leave a comment.
Hi Tuomas,
The problem you've described seems to happen because of changes in resolve
mechanism. I'll try to fix this in one of the nearest builds.
IK
On Tue, 1 Apr 2003, Tuomas Huhtanen wrote: