Hello,
I have a WAR archive with a JSP page which has to include a file from another WAR archive. Does anyone know the right way to do this?
So it's like this:
and page.jsp should have something like
but that doesn't work...
anyone any ideas? regards,
Blaxo
I have a WAR archive with a JSP page which has to include a file from another WAR archive. Does anyone know the right way to do this?
So it's like this:
Code:
- webapp.war
|- page.jsp
- common.war
|- include.jsp
and page.jsp should have something like
Code:
<jsp:include page="/common/include.jsp" flush="true"/>
anyone any ideas? regards,
Blaxo