Package com.esri.arcgisws

Examples of com.esri.arcgisws.ServiceCatalogBindingStub


    String targetSoapUrl = getTarget().getTargetSoapUrl();
    boolean matchAll = targetSoapUrl.equals(soapUrl);
    boolean checkFolder = !targetSoapUrl.endsWith("Server");
   
    // loop through the service descriptions
    ServiceCatalogBindingStub stub = new ServiceCatalogBindingStub(soapUrl);   
    for (ServiceDescription desc: stub.getServiceDescriptions()) {
      if (Thread.currentThread().isInterrupted()) return;
      String currentSoapUrl = desc.getUrl();
      String currentRestUrl = currentSoapUrl.replace(soapUrl,restUrl);
      // determine if there is a metch
View Full Code Here


   * @return array of service descriptions
   * @throws ArcGISWebServiceException if accessing service descriptions
   */
  private ServiceDescription[] readServiceDescriptions() throws ArcGISWebServiceException {
    String soapUrl = extractRootUrl(getTarget().getSoapUrl());
    ServiceCatalogBindingStub stub = new ServiceCatalogBindingStub(soapUrl);
    ServiceDescription[] descriptors = stub.getServiceDescriptions();
    return descriptors;
  }
View Full Code Here

   * @param baseUrl the SOAP url for the ArcGIS services catalog
   * @return the supplied url is returned if no exception was encountered
   * @throws IOException if an exception occurs
   */
  private String pingCatalogWsdl(String baseUrl) throws IOException {
    ServiceCatalogBindingStub stub = new ServiceCatalogBindingStub(baseUrl);
    stub.getFolders();
    return baseUrl;
  }
View Full Code Here

TOP

Related Classes of com.esri.arcgisws.ServiceCatalogBindingStub

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.