Package xregistry.generated

Examples of xregistry.generated.GetConcreateWsdlDocument


          getAppDesc.setHostName(hostName);
          return xregistryStub.getAppDesc(document).getGetAppDescResponse().getAppdescAsStr();
      }
     
      public String getConcreateWsdl(QName wsdlQName) throws XRegistryClientException {
          GetConcreateWsdlDocument document = GetConcreateWsdlDocument.Factory.newInstance();
          document.addNewGetConcreateWsdl().setWsdlQname(wsdlQName);
          return xregistryStub.getConcreateWsdl(document).getGetConcreateWsdlResponse().getWsdlAsStr();
      }
View Full Code Here


        getAppDesc.setAppQName(appName);
        getAppDesc.setHostName(hostName);
        return proxy.getAppDesc(document).getGetAppDescResponse().getAppdescAsStr();
    }
    public String getConcreateWsdl(QName wsdlQName) throws XregistryException {
        GetConcreateWsdlDocument document = GetConcreateWsdlDocument.Factory.newInstance();
        document.addNewGetConcreateWsdl().setWsdlQname(wsdlQName);
        return proxy.getConcreateWsdl(document).getGetConcreateWsdlResponse().getWsdlAsStr();
    }
View Full Code Here

TOP

Related Classes of xregistry.generated.GetConcreateWsdlDocument

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.