Package xregistry.generated

Examples of xregistry.generated.GetHostDescDocument


          document.addNewGetConcreateWsdl().setWsdlQname(wsdlQName);
          return xregistryStub.getConcreateWsdl(document).getGetConcreateWsdlResponse().getWsdlAsStr();
      }
     
      public String getHostDesc(String hostName) throws XRegistryClientException {
          GetHostDescDocument document = GetHostDescDocument.Factory.newInstance();
          document.addNewGetHostDesc().setHostName(hostName);
          return xregistryStub.getHostDesc(document).getGetHostDescResponse().getHostDescAsStr();
      }
View Full Code Here


        GetConcreateWsdlDocument document = GetConcreateWsdlDocument.Factory.newInstance();
        document.addNewGetConcreateWsdl().setWsdlQname(wsdlQName);
        return proxy.getConcreateWsdl(document).getGetConcreateWsdlResponse().getWsdlAsStr();
    }
    public String getHostDesc(String hostName) throws XregistryException {
        GetHostDescDocument document = GetHostDescDocument.Factory.newInstance();
        document.addNewGetHostDesc().setHostName(hostName);
        return proxy.getHostDesc(document).getGetHostDescResponse().getHostDescAsStr();
    }
View Full Code Here

TOP

Related Classes of xregistry.generated.GetHostDescDocument

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.