For supervising reasons, every application that we have embeds a special JSP. No, we also want to embed this JSP into eXo Portal. We first thought of having a different war file and deploy it into the same app server (we use JBoss) of eXo. But what we really want is to supervise the portlets running in exo. So we thought of bundling our JSP into the portal.war file. We could go through the trouble of creating a portlet and dispatching the call to our supervisor JSP, but couldn't it be simpler ? When I just copy this JSP (supervisor.jsp) into the portal.war and access it through
http://localhost:8080/portal/supervisor.jsp I get a :
It finds the JSP but cannot parse the JSP tags or the java code. Any idea ? How could I access a JSP into the portal.war ?