cfexchangecalendar is now adding 6 hours to my event
Something has changed with how the cfexchangecalendar tag interacts with the Exchange server but I don't know what!
Up until last week if I passed in a structure like this to the Exchange server everything looked good:
This week however when I pass in a structure like this 6 hours is added to the start and end time of the event. That and the message is displayed as text and is no longer rendered in HTML. Any ideas as to where to look for what changed?
My code to invoke the exchange connection looks like this:
<CFEXCHANGECONNECTION ACTION="open" USERNAME="#MyName#" PASSWORD="#MyPwd#" SERVER="#MySrvr#" MAILBOXNAME="#MyMailbox#" PROTOCOL="HTTPS" PORT="443" SERVERVERSION="2010" CONNECTION="MyConn">
<CFEXCHANGECALENDAR Action="create" Connection="MyConn" event="#MyStruct#" result="theUID">
<CFEXCHANGECONNECTION action="close" connection="MyConn" />
The structure being passed in is shown above... but I'll bet you noticed that. ![]()
As a band-aid, when I create my structure I could just subtract 6 hours from the start and end times but once the problem is resolved then my code breaks again. I'd much rather try to figure out what has changed but don't know where to look.
Any thoughts???
