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) {