SessionClose
From NETIM
Release |
---|
API >= 2.0 |
Description
Closes an opened session
void sessionClose(string idSession)
Parameters
Format | Variable | Description | Notes |
---|---|---|---|
string (32) | idSession | Session ID to close |
Return
none
Notes
none
Examples
Langage PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); try { $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX", "EN"); $clientSOAP->sessionClose($idSession); } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; } ?>