Zmiany pomiędzy wersją początkową i wersją 1 dla DeployerGuide/Others/eDokumentyApi/SearchDocument

Pokaż
Ignoruj:
Data i czas:
07/18/14 09:43:01 (10 years temu)
Autor:
TS (IP: 213.227.67.33)
Komentarz:

--

Legend:

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

    v1 v1  
     1= [wiki:DeployerGuide Przewodnik wdrożeniowca] > Wyszukaj dokument = 
     2 
     3 
     4=  Wyszukanie dokumentu w bazie = 
     5 
     6 
     7''' Definicja parametrów: ''' 
     8{{{ 
     9#!php 
     10<?php 
     11 
     12/** 
     13 *  Szuka dokumentów wg. zadanych kryteriów, i zwraca listę indentyfikatorów znalezionych dokumentów 
     14 *    
     15 *  @param data Array - Tablica z parametrami w formie klucz => wartość, gdzie klucz to nazwa pola z bazy z tabeli documents 
     16 *  natomiast wartość to ciąg tekstowy, który szukamy i który ma się znaleźć w kluczu 
     17 *    
     18 *  @return Array - tablica identyfikatorów dokumentów - tablica może być pusta jeśli nie znalazł, SoapFault w razie niepowodzenia 
     19 *    
     20 *  @throws Exception - SoapFault 
     21 */ 
     22Array searchProcesses(Array data) 
     23 
     24?> 
     25}}} 
     26 
     27''' Przykłady wywołań: ''' 
     28{{{ 
     29#!php 
     30 
     31// Plik MyService.php umieszczony w apps/edokumenty. 
     32// MyService.php 
     33<?php 
     34 
     35define('EDOK_API_LOGIN', 'developer'); 
     36define('EDOK_API_PASSWORD', 'developer'); 
     37define('DEFAULT_ENTITY_SYMBOL', 'demo'); 
     38 
     39require_once('./classes/eDokumentyApi/EDokApiClient.inc'); 
     40 
     41$options = array( 
     42    'location' => 'http://{host}:{port}/eDokumentyApi.php', 
     43    "uri" => "eDokumentyAPI", 
     44    'encoding'=>'UTF-8' 
     45); 
     46         
     47$client = new EDokApiClient(NULL, $options); 
     48$client->setUser(EDOK_API_LOGIN); 
     49$client->setPass(md5(EDOK_API_PASSWORD)); 
     50$header = new SoapHeader('eDokumentyAPI', 'entity_symbol', DEFAULT_ENTITY_SYMBOL); 
     51$client->__setSoapHeaders($header); 
     52 
     53 
     54$contact = array(); 
     55 
     56try { 
     57    $data = array( 
     58        'doc_id' => 666, 
     59    ); 
     60    $processes = $client->searchDocuments($data); 
     61    var_dump($processes ); 
     62 
     63} catch(SoapFault $fault) { 
     64     
     65    var_dump($fault); 
     66     
     67    if ($fault->faultcode < 100) { 
     68        trigger_error("SOAP Fault: (faultcode: {$fault->faultcode}, faultstring: {$fault->faultstring})", E_USER_ERROR); 
     69    } 
     70} 
     71 
     72?> 
     73}}}