I have a basic PHP script which can preauth and perform a search query; but what I am struggling on is how to end the session. Looking at the docs it says to use
Code:
<EndSessionRequest xmlns="urn:zimbraAccount"/>
How would I code that into a SOAP call as when I try
Code:
$client->__soapCall(
"EndSessionRequest",
NULL,
NULL,
$soapHeader
); I get a error due to the function requiring an array in the second field, yet for this call it would only appear to require EndSessionRequest
