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

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

--

Legend:

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

    v1 v1  
     1= [wiki:DeployerGuide Przewodnik wdrożeniowca] > Dodaj załącznik do dokumentu = 
     2 
     3 
     4''' Definicja parametrów: ''' 
     5{{{ 
     6#!php 
     7<?php 
     8 
     9/** 
     10 *  Dodaje załącznik do dokumentu  
     11 *    
     12 *  @param fileContent String - Tablica z parametrami 
     13 *  @param fileName String - nazwa pliku 
     14 *  @param documentId Int - identyfikator dokumentu (documents:doc_id) 
     15 *  @param contentTransferEncoding String - kodowanie przesyłanej treści pliku (tylko base64) 
     16 * 
     17 *  @return Int - id pliku jeśli sukces, 0 w razie niepowodzenia 
     18 *    
     19 *  @throws Exception - SoapFault 
     20 */ 
     21Int addAttachmentToDocument(String fileContent, String fileName, Int documentId) 
     22 
     23?> 
     24}}} 
     25 
     26''' Przykłady wywołań: ''' 
     27{{{ 
     28#!php 
     29 
     30// Plik MyService.php umieszczony w apps/edokumenty. 
     31// MyService.php 
     32<?php 
     33 
     34define('EDOK_API_LOGIN', 'developer'); 
     35define('EDOK_API_PASSWORD', 'developer'); 
     36define('DEFAULT_ENTITY_SYMBOL', 'demo'); 
     37 
     38require_once('./classes/eDokumentyApi/EDokApiClient.inc'); 
     39 
     40$options = array( 
     41    'location' => 'http://{host}:{port}/eDokumentyApi.php', 
     42    "uri" => "eDokumentyAPI", 
     43    'encoding'=>'UTF-8' 
     44); 
     45         
     46$client = new EDokApiClient(NULL, $options); 
     47$client->setUser(EDOK_API_LOGIN); 
     48$client->setPass(md5(EDOK_API_PASSWORD)); 
     49$header = new SoapHeader('eDokumentyAPI', 'entity_symbol', DEFAULT_ENTITY_SYMBOL); 
     50$client->__setSoapHeaders($header); 
     51 
     52// Tworzy kontakt 
     53$contid = NULL; 
     54 
     55try { 
     56    $data = array( 
     57        'name_1' => 'SOAP TEST'.date('d H:m:s'), 
     58        'name_2' => 'SOAPTEST', 
     59        'nip___' => 1111111111, 
     60        'street' => 'Główna',        
     61        'symbol' => 'FGH99' 
     62    ); 
     63    $contid = $client->createContact($data); 
     64    var_dump($contid); 
     65 
     66} catch(SoapFault $fault) { 
     67     
     68    var_dump($fault); 
     69     
     70    if ($fault->faultcode < 100) { 
     71        trigger_error("SOAP Fault: (faultcode: {$fault->faultcode}, faultstring: {$fault->faultstring})", E_USER_ERROR); 
     72    } 
     73} 
     74 
     75?> 
     76}}}