try
{
deployable.setFile(theDeployableFile);
EarArchive earArchive = new DefaultEarArchive(theDeployableFile);
String webUri = getUriOfCactifiedWebModule(earArchive);
if (webUri == null)
{
throw new BuildException("Could not find cactified web "
+ "module in the [" + theDeployableFile + "] EAR.");
}
WarArchive warArchive = earArchive.getWebModule(webUri);
if (warArchive == null)
{
throw new BuildException("Could not find the WAR [" + webUri
+ "] in the [" + theDeployableFile + "] EAR.");
}