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!