Version 6 (modified by lglomb, 13 years ago) |
---|
Pobierz dane o zdarzeniu
Definicja parametrów:
<?php /** * Zwraca dane zdarzenia * * @param evntid Int - Id zdarzenia (events:evntid) * * @return Array - tablica danych zdarzenia jeśli sukces, SoapFault w razie niepowodzenia * * @throws Exception - SoapFault */ Array getEvent(Int evntid) ?>
Przykłady wywołań:
// Plik MyService.php umieszczony w apps/edokumenty. // MyService.php <?php define('EDOK_API_LOGIN', 'developer'); define('EDOK_API_PASSWORD', 'developer'); define('DEFAULT_ENTITY_SYMBOL', 'demo'); require_once('./classes/eDokumentyApi/EDokApiClient.inc'); $options = array( 'location' => 'http://{host}:{port}/eDokumentyApi.php', "uri" => "eDokumentyAPI", 'encoding'=>'UTF-8' ); $client = new EDokApiClient(NULL, $options); $client->setUser(EDOK_API_LOGIN); $client->setPass(md5(EDOK_API_PASSWORD)); $header = new SoapHeader('eDokumentyAPI', 'entity_symbol', DEFAULT_ENTITY_SYMBOL); $client->__setSoapHeaders($header); $evntid = 5487; $event = array(); try { $event = $client->getEvent($evntid); var_dump($event); } catch(SoapFault $fault) { var_dump($fault); if ($fault->faultcode < 100) { trigger_error("SOAP Fault: (faultcode: {$fault->faultcode}, faultstring: {$fault->faultstring})", E_USER_ERROR); } } ?>