Zmiany pomiędzy wersją 1 and wersją 2 dla DeployerGuide/Others/eDokumentyApi/CreateContact
- Data i czas:
- 02/08/12 12:46:33 (13 years temu)
Legend:
- Bez zmian
- Dodane
- Usunięte
- Zmienione
-
DeployerGuide/Others/eDokumentyApi/CreateContact
v1 v2 69 69 $client->__setSoapHeaders($header); 70 70 71 $contid = NULL; 72 73 try { 74 $data = array( 75 'name_1' => 'SOAP TEST '.date('d H:m:s'), 76 'name_2' => 'SOAPTEST', 77 'nip___' => 1111111111, 78 'street' => 'Główna', 79 ); 80 $contid = $client->createContact($data); 81 var_dump($contid); 82 83 } catch(SoapFault $fault) { 84 85 var_dump($fault); 86 87 if ($fault->faultcode < 100) { 88 trigger_error("SOAP Fault: (faultcode: {$fault->faultcode}, faultstring: {$fault->faultstring})", E_USER_ERROR); 89 } 90 } 71 91 72 92