Hi fgb,
I do not know what is wrong with your source.
But I think that you better check how zimbra original source code sends AuthRequest.
You can start from com.zimbra.cs.taglib.tag.LoginTag which is called when you use normal zwc login.
In the doTag function of the class, zimbra client API com.zimbra.cs.zclient.ZMailbox is used like this;
Quote:
|
ZMailbox mbox = ZMailbox.getMailbox(options);
|
This is actually where SOAP AuthRequest is created and sent.
Or you can use this zimbra client API in your source code.
Hope it will help you.