Zmiany pomiędzy wersją 1 and wersją 2 dla DeployerGuide/Others/eDokumentyApi/CreateProcess
- Data i czas:
- 02/08/12 13:22:06 (13 years temu)
Legend:
- Bez zmian
- Dodane
- Usunięte
- Zmienione
-
DeployerGuide/Others/eDokumentyApi/CreateProcess
v1 v2 55 55 $client->__setSoapHeaders($header); 56 56 57 $prc_id = NULL; 57 58 59 try { 60 $data = array( 61 'dscrpt' => 'SOAP TEST '.date('d H:m:s'), 62 'briefcase_symbol' => 'DK.023', 63 'orunid' => 49, 64 'rspoid' => 54, 65 'fxtrid' => 60, 66 'prtpid' => 1, 67 ); 68 $prc_id = $client->createProcess($data); 69 var_dump($prc_id); 70 } catch(SoapFault $fault) { 71 var_dump($fault); 72 73 if ($fault->faultcode < 100) { 74 trigger_error("SOAP Fault: (faultcode: {$fault->faultcode}, faultstring: {$fault->faultstring})", E_USER_ERROR); 75 } 76 } 58 77 59 78 ?>