我正在尝试使用Lucee 4.5执行CFHTTP调用。我的主工作站上的测试代码是正常的(运行CF 10),但是当使用Lucee完全复制到笔记本电脑时如果失败, 400错误发送无效标题。见下文
#XML Being Passed
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SOAP-ENV:Body>
<m:Authenticate xmlns:m="http://foo.com/2005/">
<m:userName>xxxxx</m:userName>
<m:password>xxxxx</m:password>
</m:Authenticate>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
#Partial Codebase; 'variable' is XML posted above
<cfhttp url="http://xxxxxxx?WSDL" method="post" result="theCFHTTP" compression="false">
<cfhttpparam type="HEADER" name="Content-Type" value="text/xml; charset=utf-8">
<cfhttpparam type="HEADER" name="Accept" value="application/soap+xml, application/dime, multipart/related, text/*">
<cfhttpparam type="HEADER" name="User-Agent" value="Axis/1.1">
<cfhttpparam type="HEADER" name="Cache-Control" value="no-cache">
<cfhttpparam type="HEADER" name="Pragma" value="no-cache">
<cfhttpparam type="HEADER" name="SOAPAction" value="http://foo.com/2005/Authenticate">
<cfhttpparam type="HEADER" name="Content-Length" value="#len(soap)#">
<cfhttpparam type="xml" name="body" value="#soap#">
</cfhttp>
我是Lucee的新手并且从未使用过Railo,所以如果有独特的字符集或其他配置选项需要完成,我会很感激帮助。
编辑:进一步测试已确定我无法CFHTTP到笔记本电脑本身以外的任何页面。所有外部URL都会提供400个错误的标题消息。
我还添加了compression=false
,以便Lucee不会自动将GZip内容发送到请求网址。
我的工作机器的返回标题:
失败的机器的返回标题:
5月19日编辑:
我根据Fabio的回复在CFHTTP调用中分别测试了以下每个调整:
虽然我的错误消息已更改为 400 Bad Request ,但两者均无效。 CFHTTP调用的转储表示我发送的XML无效,但独立检查确认它确实有效。它在令牌认证呼叫失败。
答案 0 :(得分:0)
我今天遇到了同样的问题。最后,我明白了!
我使用tcpdump嗅探网络流量,看起来我们对IIS7的请求包含了两次 Content-Type 标头,导致丑陋
错误请求 - 无效的标头名称错误
问题在于身体参数:
<cfhttpparam type="xml" name="body" value="#soap#">
Lucee相应地将Content-Type标头设置为text / xml; utf-8 ...然后根据您的其他参数再次设置它:
<cfhttpparam type="HEADER" name="Content-Type" value="text/xml; charset=utf-8">
您有两种选择: