Hello!
We had ZCS5 installation and php webpage worked trough SOAP interface with zimbraAdmin class (
ftp://ftp.rongage.org/pub/zimbraAdmin/).
Now, after moving to ZCS6 i decided to extended functionlity and noticed that code doesn't work. Works nothing but Auth request.
Digging trough code i found that there is no SESSIONID in auth response.
PHP Code:
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
<soap:Header>
<context xmlns="urn:zimbra">
<change token="11189"/>
</context>
</soap:Header>
<soap:Body>
<AuthResponse xmlns="urn:zimbraAdmin">
<authToken>0_*REMOVEDBYME*</authToken><lifetime>43200000</lifetime>
<a n="zimbraIsDomainAdminAccount">false</a>
</AuthResponse>
</soap:Body>
</soap:Envelope>
So, as you can see there is only authtoken and lifetime.
As i understand all requests rely on sessionid and not working without it.
So where to digg and what to do to make it work ?