Skip to main content
Participant
May 28, 2014
Answered

Can ColdFusion 10 connects to Exchange Server 2013?

  • May 28, 2014
  • 1 reply
  • 926 views

There are lots of forums and chats about ColdFusion 10 connecting to Exchange Server 2010. Does anybody knows whether ColdFusion 10 can connects to Exchange Server 2013. If you do know, what are the steps involved? I have tried all the tricks used in ColdFusion 10 connecting to Exchange Server 2010 and still cannot connect to Exchange Server 2013.

This topic has been closed for replies.
Correct answer pak_save

Found a solution. Yes you can connect ColdFusion 10 to Exchange Server 2013 but there is a slight twist to the solution if you want to use cfexchangeXXXXX functionalities.

1. Ensure that you have imported the Exchange Server 2013 certificate into ColdFusion 10 server.

2. When calling cfexchangeconnection, add:

serverversion="2010"

Protocol="https"

formbasedauthentication="TRUE"

formbasedauthenticationURL="XXXXXX"

If serverversion is missing, it will default to 2007 server.

1 reply

Legend
May 28, 2014

I find Exchange 2013 works well as an email SMTP relay to CFMAIL tags from CF10.

HTH, Carl.

pak_saveAuthor
Participant
May 28, 2014

Thanks, Carl. using as a relay is Ok but I want to use 'cfexchangeconnection' ie. cfexchangexxxxx functions. Exchange server needs to be setup and in my case Exchange Server 2013. webdav is an old technology only exists on erver 2003. Does it has any effect to my setup? Or is there something I need to be aware of?

pak_saveAuthorCorrect answer
Participant
June 13, 2014

Found a solution. Yes you can connect ColdFusion 10 to Exchange Server 2013 but there is a slight twist to the solution if you want to use cfexchangeXXXXX functionalities.

1. Ensure that you have imported the Exchange Server 2013 certificate into ColdFusion 10 server.

2. When calling cfexchangeconnection, add:

serverversion="2010"

Protocol="https"

formbasedauthentication="TRUE"

formbasedauthenticationURL="XXXXXX"

If serverversion is missing, it will default to 2007 server.