Hello JBoss(+Tomcat/Jetty) Users

I have a large j2ee project that divides nicely into a bunch of small
modules that do not need to know about each other.  There is one main HTTP
entry point, that is, one primary Request Handling servlet in a small web
app that uses the parameters of the request to determine which modules need
to be included to service the request.

Given that, if I have an enterprise application with an application.xml file
looking like this...

<application>
    <display-name>Application With Two Web Apps</display-name>
    <module>
        <ejb>app_module_N.jar</ejb>
    </module>
    <module>
        <web>
            <web-uri>app_module_N.war</web-uri>
            <context-root>/module_N</context-root>
        </web>
    </module>
    <module>
        <web>
            <web-uri>request_handler.war</web-uri>
            <context-root>/handler</context-root>
        </web>
    </module>
</application>

Then is there any way I can make the RequestHandlerSerlvet in the
request_handler.war be able to "include" a JSP page found in module_N.war.
In other words, is it possible for a servlet/jsp in one web app context to
include a JSP in another web app context?

Thanks, Oz


_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to