Commit 6d5dcc155ecb2df0ff0f6ee92bb53bc1f91150ee

Authored by Myriam Bouchemit
1 parent 256bc35c

IP address of manunja in wsdl.location

Showing 2 changed files with 3 additions and 2 deletions   Show diff stats
generic_data/wsdl.location
1   -manunja.irap.omp.eu http://manunja.irap.omp.eu/BASE/DDService/dd.wsdl
  1 +manunja.irap.omp.eu http://10.121.0.2/BASE/DDService/dd.wsdl
2 2 cdpp1.cesr.fr http://195.83.102.56/BASE/DDService/dd.wsdl
... ...
php/classes/AmdaClient.php
... ... @@ -7,6 +7,7 @@
7 7 */
8 8  
9 9 ini_set("soap.wsdl_cache_enabled", "0");
  10 + ini_set('soap.wsdl_cache_ttl',0);
10 11  
11 12 class AmdaClient {
12 13  
... ... @@ -695,7 +696,7 @@ class AmdaClient {
695 696 /* Get user info from login */
696 697 public function getUserInfo($login) {
697 698 try {
698   - $info = $this->client->getUserInfo($login,md5(DDSERVICE_PRIVATEKEY.$login.'getUserInfo')); error_log($info,1,email);
  699 + $info = $this->client->getUserInfo($login,md5(DDSERVICE_PRIVATEKEY.$login.'getUserInfo')); //error_log($info,1,email);
699 700 }
700 701 catch (SoapFault $exception) {
701 702 return array('success' => false, 'message' => $exception->faultstring);
... ...