zimbra 日历 API?!肥皂爪哇

发布于 2024-10-13 06:55:05 字数 217 浏览 2 评论 0原文

我有一个关于 zimbra 的soap-java 实现的问题。

我正在编写一个java客户端,它应该显示来自用户的日历条目。 例如:user=testuser,2011 年 1 月 1 日到 2011 年 1 月 31 日之间的所有条目。

我搜索了网络,但 Zimbra SOAP API 没有任何好的文档...

PS:连接正常,我可以从我的 java 应用程序发送邮件

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

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

I searched the web, but Zimbra SOAP API doesn't have any good documentation...

PS: connection is ok, i could send a mail from my java application

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

同展鸳鸯锦 2024-10-20 06:55:05

如果您使用的是 ZMailbox SOAP 客户端,ZMailbox.getApptSummaries 将为您提供 ZApptSummaryResult 对象的 List,这些对象代表您的开始时间和结束时间之间重叠的所有约会。结束日期:

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

如果您使用 zmmailbox 命令行客户端,请使用 gaps 命令:

zmmailbox gaps {start-date-spec} {end-date-spec}

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}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文