Examples of GetConcreateWsdlResponseDocument


Examples of xregistry.generated.GetConcreateWsdlResponseDocument

    public GetConcreateWsdlResponseDocument getConcreateWsdl(GetConcreateWsdlDocument input)
            throws XregistryException {
        log.info("Request Received " + input.xmlText());
        String cwsdlAsStr = registryImpl.getConcreateWsdl(findUserDN(), input.getGetConcreateWsdl()
                .getWsdlQname().toString());
        GetConcreateWsdlResponseDocument responseDocument = GetConcreateWsdlResponseDocument.Factory
                .newInstance();
        if (cwsdlAsStr == null) {
            responseDocument.addNewGetConcreateWsdlResponse().setNilWsdlAsStr();
        } else {
            responseDocument.addNewGetConcreateWsdlResponse().setWsdlAsStr(cwsdlAsStr);
        }
        log.info("Response  Sent  " + responseDocument.xmlText());
        return responseDocument;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.