0 Replies Latest reply on Apr 4, 2013 7:13 AM by lowecg2004

    Is it possible to access nested exploded archives?

    lowecg2004

      Is it possible to access an exploded WAR inside an exploded EAR archive?  As part of an Arquillian createDeployment method, I access my EAR as follows:

       

      EnterpriseArchive er = ShrinkWrap

                                              .create(ExplodedImporter.class, "my-project.ear")

                                              .importDirectory(new File("./my-project.ear"))

                                              .as(EnterpriseArchive.class);

       

      Within the EAR I now want to access a WAR archive via the EAR reference:

       

      WebArchive web = er.getAsType(WebArchive.class, "/my-project-web.war");

       

      This only works for packaged archives.  I'd like to access an exploded WAR archive at this point.  Is it possible?


      Regards,

       

      Chris.