app = (Application) addf.read(fis);
// read runtime deployment descriptor file if it exists
if (file2 != null) {
FileInputStream fis2 = new FileInputStream(file2);
ApplicationRuntimeDDFile arddf =
new ApplicationRuntimeDDFile();
arddf.setXMLValidation(validateXML);
if (validateXML) {
arddf.setXMLValidationLevel(arddf.PARSING_VALIDATION);
}
app = (Application)arddf.read(app, fis2);
if (fis2 != null) {
fis2.close();
}
}