java ee - Deploying an exploded WAR inside a compressed EAR == not possible? -
at moment trying deploy exploded war directory in compressed ear file on jboss-4.2.3.ga server. jboss complains can't find web-app.war file (failed find module file: web-app.war). if deploy same ear file exploded, too, deployment works without problems.
so question is: possible deploy exploded war inside compressed ear?
i can deploy exploded war inside compressed ear on jboss-5.1.0.ga.
i suggest can check youear.ear/meta-inf/application.xml.
my appliation.xml this:
<module> <web> <web-uri>myapp-war-1.0.0-snapshot.war</web-uri> <context-root>/myapp</context-root> </web> </module>
and myapp-war-1.0.0-snapshot.war exploded war directory.
Comments
Post a Comment