Package org.apache.stratos.adc.instanceinfo.mgt.stub

Examples of org.apache.stratos.adc.instanceinfo.mgt.stub.InstanceInformationManagementServiceStub


      log.info("Instance State is updated to " + state + " "
          + registrant.getRemoteHost());
      String serviceURL = "https://" + System.getProperty("adc.host")
          + ":" + System.getProperty("adc.port")
          + "/services/InstanceInformationManagementService";
      InstanceInformationManagementServiceStub stub = new InstanceInformationManagementServiceStub(
          serviceURL);
      stub.updateInstanceState(registrant.getRemoteHost(), 123,
          registrant.retrieveClusterDomain(), "__$default",
          registrant.getService(), state);
    } catch (AxisFault e) {
            log.warn("Error notifying state " + state + " of registrant " + registrant + " to ADC", e);
    } catch (RemoteException e) {
View Full Code Here

TOP

Related Classes of org.apache.stratos.adc.instanceinfo.mgt.stub.InstanceInformationManagementServiceStub

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.