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