Zmiany pomiędzy wersją 92 and wersją 93 dla DeployerGuide/Others/eDokumentyApi
- Data i czas:
- 12/29/15 13:14:45 (9 years temu)
Legend:
- Bez zmian
- Dodane
- Usunięte
- Zmienione
-
DeployerGuide/Others/eDokumentyApi
v92 v93 37 37 #!php 38 38 <?php 39 // a1 - login, 40 // a2 - hasło, 41 // a3 - symbol jednostki 42 /* 39 ini_set('display_errors', 'On'); 40 41 define('EDOK_API_LOGIN', 'user'); 42 define('EDOK_API_PASSWORD', 'password'); 43 define('DEFAULT_ENTITY_SYMBOL', 'demo'); 44 43 45 $ops = array( 44 'location' => 'http:// {host}:{port}eDokumentyApi.php?a1='.EDOK_API_LOGIN.'&a2='.md5(md5(EDOK_API_PASSWORD).'_SOAP_eDok_api').'&a3='.DEFAULT_ENTITY_SYMBOL.'',46 'location' => 'http://localhost/eDokumentyApi.php?a1='.EDOK_API_LOGIN.'&a2='.md5(md5(EDOK_API_PASSWORD).'_SOAP_eDok_api').'&a3='.DEFAULT_ENTITY_SYMBOL.'', 45 47 "uri" => "eDokumentyAPI", 46 48 'encoding'=>'UTF-8' 47 49 ); 48 ?> 50 51 $client = new SoapClient(null, $ops); 52 53 $params = array( 54 'name_1' => 'Daniel Wąsala' 55 ); 56 57 /* Invoke webservice method with your parameters, in this case: Function1 */ 58 $response = $client->searchContacts($params); 59 60 /* Print webservice response */ 61 var_dump($response); 49 62 }}} 50 63