Package xregistry.generated

Examples of xregistry.generated.RegisterHostDescDocument


          concreteWsdl.setLifetimeAsSeconds(lifetimeAsSeconds);
          return xregistryStub.registerConcreteWsdl(input).getRegisterConcreteWsdlResponse().getResourceID();
      }
     
      public String registerHostDesc( String hostDescAsStr) throws XRegistryClientException {
          RegisterHostDescDocument input =  RegisterHostDescDocument.Factory.newInstance();
          input.addNewRegisterHostDesc().setHostDescAsStr(hostDescAsStr);
          return xregistryStub.registerHostDesc(input).getRegisterHostDescResponse().getResourceID();
      }
View Full Code Here


        concreteWsdl.setWsdlAsStr(wsdlAsStr);
        concreteWsdl.setLifetimeAsSeconds(lifetimeAsSeconds);
        return proxy.registerConcreteWsdl(input).getRegisterConcreteWsdlResponse().getResourceID();
    }
    public String registerHostDesc( String hostDescAsStr) throws XregistryException {
        RegisterHostDescDocument input =  RegisterHostDescDocument.Factory.newInstance();
        input.addNewRegisterHostDesc().setHostDescAsStr(hostDescAsStr);
        return proxy.registerHostDesc(input).getRegisterHostDescResponse().getResourceID();
    }
View Full Code Here

TOP

Related Classes of xregistry.generated.RegisterHostDescDocument

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.