The following SOAP request works in 4.0:
Code:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="urn:zimbraAdmin" xmlns:ns2="urn:zimbra" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Header>
<ns2:context>
<authToken>(valid token)</authToken>
<nosession/>
</ns2:context>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<ns1:GetAccountInfoRequest>
<account by="name">account@domain.com</account>
</ns1:GetAccountInfoRequest>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
In 4.5 it returns:
"permission denied: need admin token"
Has something significant changed in the SOAP interface in 4.5 that is causing this?