Zmiany pomiędzy wersją 1 and wersją 2 dla DeployerGuide/Others/eDokumentyApi/UpdateContactPerson

Pokaż
Ignoruj:
Data i czas:
02/08/12 12:53:07 (12 years temu)
Autor:
TS (IP: 213.227.67.33)
Komentarz:

--

Legend:

Bez zmian
Dodane
Usunięte
Zmienione
  • DeployerGuide/Others/eDokumentyApi/UpdateContactPerson

    v1 v2  
    6060$client->__setSoapHeaders($header); 
    6161 
     62try { 
     63    $data = array( 
     64        'copeid' => 567, 
     65        'date__' => 'Jan Nowak-Kowalski', 
     66    ); 
     67    $copeid = $client->updateContactPerson($data); 
     68    var_dump($copeid); 
    6269 
     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} 
    6378 
    6479?>