ColdFusion 11 CFHTTP NTLM支持
在ColdFusion 11中,Adobe增加了对NTLM
支持。 但我不明白我如何才能做到这一点。
特别是,文件似乎是错误的:它指出:
对于NTLM,要使用,必须将重定向属性设置为false
但是,这样做时,ColdFusion会引发以下异常:
当身份验证类型为NTLM时,重定向不能设置为false。
有没有人在CFHTTP
使用NTLM
?
我正在使用的代码:
<cfhttp url="#variables.webserviceURL#"
method="post"
result="httpResponse"
charset="utf-8"
timeout="3000"
authType="NTLM"
domain="myDomain"
username="myUser"
password="myPassword">
<cfhttpparam type="header" name="accept-encoding" value="no-compression" />
<cfhttpparam type="xml" value="#trim(soapRequest)#"/>
</cfhttp>
链接地址: http://www.djcxy.com/p/31203.html