Get all pending operations

				
					StructQueryOpePending[] queryOpePending(string idSession)
				
			

Return the list of pending operations under processing.

REQUIRED


  • idSession string (32)
    Session ID.

An Array of StructQueryOpePending

<?php 
$clientSOAP = new SoapClient("http://URL.wsdl"); 
 
try 
{ 
      $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX", "EN"); 
      $res= $clientSOAP->queryOpePending($idSession); 
 
      print_r($res); 
} 
catch(SoapFault $fault) 
{ 
      echo "Exception : " .$fault->getMessage(). "\n"; 
} 
 
if (isset($idSession)) 
{ 
      $clientSOAP->sessionClose($idSession); 
} 
?>