I'm trying to use ZMailBox to use the Zimbra's SOAP API. When I try to connect, I got this error :
Unable to determine platform because \opt\zimbra\.platform does not exist.
My code is :
String serverURL = "http://zimbra.liber-int.local-trust.com/service/soap";
ZMailbox mailbox = ZMailbox.getByName("taichimaro", "123456", serverURL);
or
Options opt = new ZMailbox.Options();
opt.setAccount("taichimaro@server.com");
opt.setPassword("123456");
opt.setAccountBy(AccountBy.name);
opt.setUri(serverURL);
ZMailbox mb = ZMailbox.getMailbox(opt);
Thnx