如何使用 cfexchangeconnection 访问辅助日历?

发布于 2024-07-18 19:22:01 字数 754 浏览 3 评论 0原文

我有一个定义了多个日历的 Exchange 帐户。 是否可以使用 cfexchangeconnection 查询辅助日历?

这是我用来获取主日历的代码,但我在 CF8 中没有看到任何与我的个人资料中的辅助日历“AltCal”对话的选项。

<cfexchangeConnection action="open" username="#theusername#" password="#pw#" server="#exchangeServerIP#" connection="theConnection" protocol="https" >

    <cfexchangecalendar action="get" name="qEvents" connection="theConnection">
        <cfexchangefilter name="maxrows" value="100">
        <cfexchangefilter name="StartTime" from="#CreateDate(2009,5,8)#" to="#CreateDate(2009,5,8)#">
        <cfexchangefilter name="allDayEvent" value="0">
    </cfexchangecalendar>
<cfexchangeConnection action="close" connection="theConnection">

谢谢!

I have an Exchange account with multiple calendars defined. Is it possible to query a secondary calendar with cfexchangeconnection?

Here's the code that I use to get the primary calendar, but I don't see any options in CF8 to talk to the secondary calendar "AltCal" in my profile.

<cfexchangeConnection action="open" username="#theusername#" password="#pw#" server="#exchangeServerIP#" connection="theConnection" protocol="https" >

    <cfexchangecalendar action="get" name="qEvents" connection="theConnection">
        <cfexchangefilter name="maxrows" value="100">
        <cfexchangefilter name="StartTime" from="#CreateDate(2009,5,8)#" to="#CreateDate(2009,5,8)#">
        <cfexchangefilter name="allDayEvent" value="0">
    </cfexchangecalendar>
<cfexchangeConnection action="close" connection="theConnection">

Thanks!

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

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

发布评论

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

评论(2

没有你我更好 2024-07-25 19:22:01

我仔细查看了 CFML 参考用户指南,看起来这是不受支持的。

我建议您将此作为功能请求输入。 我会投票支持它!

I took a close look at the CFML Reference and the User Guide, and it looks like this is something that's not supported.

I suggest you enter this as a feature request. I would vote for it!

野味少女 2024-07-25 19:22:01

最坏的情况下,您应该能够通过 .NET/COM cfobject 调用访问您喜欢的内容。 当然,做事可能是一种有趣的练习。

这可能对你有用..

http://msdn.microsoft.com /en-us/library/ms878​​108.aspx

Worst case you should be able to access what you like through .NET/COM cfobject calls. Of course doing might be an exercise in intermestingness.

This might be of use to ya..

http://msdn.microsoft.com/en-us/library/ms878108.aspx

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