try {
// apply the runtime settings if any
is = archive.getEntry(ddFileEntryName);
DeploymentDescriptorFile confDD = new SipDeploymentDescriptorFile();
if (archive.getArchiveUri() != null) {
confDD.setErrorReportingString(archive.getArchiveUri());
}
if ((is != null) && (confDD != null)) {
confDD.setXMLValidation(super.getRuntimeXMLValidation());
confDD.setXMLValidationLevel(super.getRuntimeXMLValidationLevel());
SipApplication sipApplication = (SipApplication) confDD.read(is);
this.sbd = (SipBundleDescriptor) sipApplication.getReferringDescriptor();
}
} catch (SAXParseException spe) {
String msg =
newLocalStrings.getString("enterprise.deployment.backend.sip.saxparseexception")