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

link|improve this question

74% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.