I've a question about the soap-java implementation for zimbra.

I'm writing a java-client wich should show calendar entrys from a USER. for example: user=testuser, all entrys between 01.01.2011 to 31.01.2011.

i searched the WHOLE web, but this stupid zimbra soap api doesn't have any good documentation...

has somebody any experience?

i would like to work with the zmmailbox. :-)

ps: connection is ok, i could send a mail from my java application :-)

thanks!

link|improve this question

43% accept rate
If you're satisfied with the response you got, please click the green check mark outline to the left of the answer to accept it. – dkarp Jan 25 '11 at 15:50
of course, sorry ;)! thanks!! – eav Jan 25 '11 at 22:07
feedback

1 Answer

up vote 2 down vote accepted

If you're using the ZMailbox SOAP client, ZMailbox.getApptSummaries will give you a List of ZApptSummaryResult objects representing all appointments overlapping between your start and end dates:

List<ZApptSummaryResult> appts;
TimeZone tz = TimeZone.getDefault();
appts = ZMailbox.getApptSummaries(null, startTime, endTime, null, tz, null);

If you're using the zmmailbox command-line client, use the gaps command:

zmmailbox gaps {start-date-spec} {end-date-spec}
link|improve this answer
I think the first one will do.. I don't need something with the command-line ;) i had the problem with the folderids, before.. – eav Jan 25 '11 at 9:06
worked for me! thanks! – eav Jan 25 '11 at 11:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.