Package xregistry.generated

Examples of xregistry.generated.GetServiceDescDocument


          document.addNewGetResource().setResourceName(resourceName);
          return xregistryStub.getResource(document).getGetResourceResponse().getResourceAsStr();
      }
     
      public String getServiceDesc(QName serviceName) throws XRegistryClientException {
          GetServiceDescDocument input =  GetServiceDescDocument.Factory.newInstance();
          input.addNewGetServiceDesc().setServiceQname(serviceName);
          return xregistryStub.getServiceDesc(input).getGetServiceDescResponse().getServiceDescAsStr();
      }
View Full Code Here


        document.addNewGetResource().setResourceName(resourceName);
        return proxy.getResource(document).getGetResourceResponse().getResourceAsStr();
    }
   
    public String getServiceDesc(QName serviceName) throws XregistryException {
        GetServiceDescDocument input =  GetServiceDescDocument.Factory.newInstance();
        input.addNewGetServiceDesc().setServiceQname(serviceName);
        return proxy.getServiceDesc(input).getGetServiceDescResponse().getServiceDescAsStr();
    }
View Full Code Here

TOP

Related Classes of xregistry.generated.GetServiceDescDocument

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.