Package xregistry.generated

Examples of xregistry.generated.App2HostsDocument


               String xregistryServiceWsdlUrl) throws XRegistryClientException{
        this(hostkeyPath, CertificateManager.getTrustedCertificates(trustedCerts), xregistryServiceWsdlUrl);
     }

      public String[]  app2Hosts(String appName) throws XRegistryClientException {
          App2HostsDocument document = App2HostsDocument.Factory.newInstance();
          document.addNewApp2Hosts().setAppName(appName);
          App2HostsResponseDocument responseDocument = xregistryStub.app2Hosts(document);
          return responseDocument.getApp2HostsResponse().getHostArray();
      }
View Full Code Here


        proxy = (XregistryPortType)client.generateDynamicStub(XregistryPortType.class);
        userDN = context.getUserDN();
        System.out.println("Create Stub for "+ registryServiceWsdlUrl + " using "+ userDN);
    }
    public String[]  app2Hosts(String appName) throws XregistryException {
        App2HostsDocument document = App2HostsDocument.Factory.newInstance();
        document.addNewApp2Hosts().setAppName(appName);
        App2HostsResponseDocument responseDocument = proxy.app2Hosts(document);
        return responseDocument.getApp2HostsResponse().getHostArray();
    }
View Full Code Here

TOP

Related Classes of xregistry.generated.App2HostsDocument

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.