CancelOpe
From NETIM
Release | Runtime |
---|---|
API >= 2.0 | Synchronous |
Description
Cancel a pending operation
void cancelOpe(string idSession, int numOperation)
Parameters
Format | Variable | Description | Notes |
---|---|---|---|
string (32) | idSession | Session ID | |
int | numOperation | Tracking ID of the operation |
Return
None
Notes
According to the current status of the operation, the cancellation may not be possible
Examples
PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); try { $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX", "EN"); $clientSOAP->cancelOpe($idSession, 1000); } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; } if (isset($idSession)) { $clientSOAP->sessionClose($idSession); } ?>
Release | Runtime |
---|---|
API > 1.0 | Synchronous |
Description
Cancel a pending operation
void cancelOpe(string idSession, int numOperation)
Parameters
Format | Variable | Description | Notes |
---|---|---|---|
string (32) | idSession | Session ID | |
int | numOperation | Tracking ID of the operation |
Return
None
Notes
According to the current status of the operation, the cancellation may not be possible
Examples
PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); try { $idSession = $clientSOAP->login("XXXX", "XXXX", "EN"); $clientSOAP->cancelOpe($idSession, 1000); } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; } if (isset($idSession)) { $clientSOAP->logout($idSession); } ?>
JAVA
DRSServiceLocator service = new DRSServiceLocator(); String idSession; int trackingID; try { DRSPortType port = service.getDRSPort(); idSession = port.login("XXXX", "XXXX", "EN"); trackingID = port.cancelOpe(idSession, 1000); System.out.println(trackingID); port.logout(idSession); } catch (RemoteException re) { System.out.println(re.getMessage()); } catch (ServiceException se) { se.printStackTrace(); }