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

时间:2009-05-07 17:53:55

标签: coldfusion calendar exchange-server

我有一个定义了多个日历的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">

谢谢!

2 个答案:

答案 0 :(得分:1)

我仔细查看了CFML ReferenceUser Guide,看起来这是不受支持的。

我建议你enter this as a feature request。我会投票支持它!

答案 1 :(得分:0)

最糟糕的情况是,您应该能够通过.NET / COM cfobject调用访问您喜欢的内容。当然,这可能是一种间歇性的练习。

这对你来说可能有用..

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

相关问题