コード例 #1
0
 /**
  * Create a new call object that can be used to send SOAP message to actuate server
  *
  * @return Call
  * @throws ServiceException
  */
 public org.apache.axis.client.Call createCall() throws ServiceException {
   org.apache.axis.client.Call call = (org.apache.axis.client.Call) actuateAPI.createCall();
   call.setTargetEndpointAddress(this.actuateServerURL);
   return call;
 }