Zmiany pomiędzy wersją 1 and wersją 2 dla DeployerGuide/Others/eDokumentyApi/GetProcess
- Data i czas:
- 02/08/12 13:23:03 (13 years temu)
Legend:
- Bez zmian
- Dodane
- Usunięte
- Zmienione
-
DeployerGuide/Others/eDokumentyApi/GetProcess
v1 v2 47 47 $client->__setSoapHeaders($header); 48 48 49 $prc_id = 4578; 50 $process = array(); 49 51 52 try { 53 $process = $client->getProcess($prc_id); 54 var_dump($process); 55 } catch(SoapFault $fault) { 56 var_dump($fault); 57 58 if ($fault->faultcode < 100) { 59 trigger_error("SOAP Fault: (faultcode: {$fault->faultcode}, faultstring: {$fault->faultstring})", E_USER_ERROR); 60 } 61 } 50 62 51 63 ?>