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

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

--

Legend:

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

    v1 v2  
    4848$client->__setSoapHeaders($header); 
    4949 
    50  
     50try { 
     51    $data = array( 
     52        'symbol' => 'SOAP TEST MKY-09', 
     53    ); 
     54    $depoid = $client->deleteProduct($data); 
     55    var_dump($depoid); 
     56} catch(SoapFault $fault) { 
     57    var_dump($fault); 
     58     
     59    if ($fault->faultcode < 100) { 
     60        trigger_error("SOAP Fault: (faultcode: {$fault->faultcode}, faultstring: {$fault->faultstring})", E_USER_ERROR); 
     61    } 
     62} 
    5163 
    5264?>