CF9 Exchange服務器2007(託管)ColdFusion的9 cfexchangecalendar交換服務器的Outlook 2007
我試圖爲用戶提供託管的Exchange服務器上添加日曆事件。我收到錯誤; 無法使用HTTP/HTTPS協議連接到Exchange服務器。
HTTP響應代碼:400
的代碼;
<cfexchangeCalendar action="Create"
username="EXCH016\ron_domain"
password="password"
mailboxname="ron"
server="https://owa016.msoutlookonline.net/owa"
Protocol="https"
formbasedauthentication=true
formbasedauthenticationURL="https://owa016.msoutlookonline.net/owa/auth/owaauth.dll"
Event="#sEvent#"
result="theUID">
#theUID#<br>
我知道我可以使用以下方式聯繫服務器;
<cfhttp URL='https://owa016.msoutlookonline.net/owa' result='res' >
<cfdump var="#res#">
<cfoutput>#res.filecontent#</cfoutput>
我得到的請求的電子郵件地址和密碼的形式。
我一直在解決這個問題一段時間了。我可以通過瀏覽器進入owa頁面並登錄。此時,我對如何調試問題感到茫然。