Zmiany pomiędzy wersją 1 and wersją 2 dla DeployerGuide/Others/eDokumentyApi/UpdateContactPerson
- Data i czas:
- 02/08/12 12:53:07 (13 years temu)
Legend:
- Bez zmian
- Dodane
- Usunięte
- Zmienione
-
DeployerGuide/Others/eDokumentyApi/UpdateContactPerson
v1 v2 60 60 $client->__setSoapHeaders($header); 61 61 62 try { 63 $data = array( 64 'copeid' => 567, 65 'date__' => 'Jan Nowak-Kowalski', 66 ); 67 $copeid = $client->updateContactPerson($data); 68 var_dump($copeid); 62 69 70 } catch(SoapFault $fault) { 71 72 var_dump($fault); 73 74 if ($fault->faultcode < 100) { 75 trigger_error("SOAP Fault: (faultcode: {$fault->faultcode}, faultstring: {$fault->faultstring})", E_USER_ERROR); 76 } 77 } 63 78 64 79 ?>