Package org.jvnet.glassfish.comms.deployment.io.runtime

Examples of org.jvnet.glassfish.comms.deployment.io.runtime.SipRuntimeDDFile


        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();
View Full Code Here


            }
        }
    }

    public String getRuntimeDeploymentDescriptorPath() {
        return new SipRuntimeDDFile().getDeploymentDescriptorPath();
    }
View Full Code Here

TOP

Related Classes of org.jvnet.glassfish.comms.deployment.io.runtime.SipRuntimeDDFile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.