// log a warning message in the server log
sLogger.log(Level.WARNING, "deployment.no_xmldir",
new Object[]{xmlDir, appDir});
xmlDir = appDir;
}
AppDD appDD = new AppDD(new File(xmlDir));
return appDD.getContextRoots();
}
} catch (Exception e) {
if (e instanceof IASDeploymentException) {
throw (IASDeploymentException)e;
} else {