Question

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!

Was it helpful?

Solution

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!

OTHER TIPS

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top