Zmiany pomiędzy wersją 1 and wersją 2 dla DeployerGuide/Others/eDokumentyApi/GetContactPersons
- Data i czas:
- 02/08/12 12:55:13 (13 years temu)
Legend:
- Bez zmian
- Dodane
- Usunięte
- Zmienione
-
DeployerGuide/Others/eDokumentyApi/GetContactPersons
v1 v2 47 47 $client->__setSoapHeaders($header); 48 48 49 $contid = 123; 50 $contactPersons = array(); 49 51 52 try { 53 $contactPersons = $client->getContactPersons($data); 54 var_dump($contactPersons); 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 ?>