CFExchangeConnection and 440 error
I have been getting this error when trying to connect to Exchange 2007 using <cfexchangeconnection>:
Unable to connect to the Exchange server using HTTP/HTTPS protocol. HTTP response code : 440
I have seen the other discussions on this topic and even tried calling Adobe Support but haven't had any luck in getting a fix. I was hopeful after the recent cumlative hot fix which addressed the bug I am encountering there would be a fix...
http://kb2.adobe.com/cps/511/cpsid_51180.html
See item 74297, "Fix for error 440 status thrown when connecting to Exchange server 2007 using cfexchangeconnection with attribute formbasedauthentication enabled."
Unfortunately I am still getting the same error. Here is the code I am using, I took out the sensitive bits:
<cfexchangeconnection
action="open"
connection="cfex"
server="owa"
protocol="https"
userName="DOMAIN\user"
password="mypassword"
formbasedauthentication="no" />
also tried
<cfexchangeconnection
action="open"
connection="cfex"
server="owa"
protocol="https"
userName="DOMAIN\user"
password="mypassword"
formbasedauthentication="yes"
formBasedAuthenticationURL="https://owa/owa/auth/logon.aspx"
/>