I have some
JSP code which does not compile in JDeveloper but works fine when deployed in a web server (Websphere).
There is a page called main.jsp with code like:
...
Map clientDataList = (Map) request.getAttribute("clientDataList");
...
<%@ include file="standard1Page.jsp" %>
clientDataList is set in a
servlet which forwards to main.jsp. On standard1Page.jsp I want to access the clientDataList object:
...
<%= clientDataList.get("sitealignment") %>
...
But standard1Page.jsp does not compile in JDeveloper because clientDataList is not defined on that page:
Error(2,75): variable clientDataList not found in class _standard1Page
Is this a fundamental problem with JDeveloper not following through the "includes" when doing the project compile, or is there something I can set to make this stuff compile ? If not I'm going to have to edit my JSPs in a text editor so I can compile my project.
Francis