Hello

				
					string hello(string idSession)
				
			

Return a welcome message.

REQUIRED


  • idSession string (32)
    Session ID.

A String

This function can be used to obtain the version number of the API on which the connection is made or to test if the session is still active.

<?php 
$clientSOAP = new SoapClient("http://URL.wsdl");
 
try 
{ 
      $idSession = $clientSOAP->login("XXXX", "XXXX", "EN"); 
      echo $clientSOAP->hello($idSession); 
} 
catch(SoapFault $fault) 
{ 
      echo "Exception : " .$fault->getMessage(). "\n"; 
} 
 
if(isset($idSession)) 
{ 
      $clientSOAP->logout($idSession); 
} 
?>