我有一个使用cfhttp调用远程服务的cfc。该服务返回失败代码,这意味着我对远程服务的调用格式不正确。有没有办法捕获我发送的cfhttp帖子的内容?我想捕获原始帖子数据,以便我可以看到格式问题的位置。以下是我的代码的示例:
<cfhttp url="https://www.webservice.com" method="POST" result="httpResponse">
<cfhttpparam type="formField" name="method" value="doSomething">
<cfhttpparam type="formField" name="user" value="myUserName">
<cfhttpparam type="formField" name="password" value="myPassword">
</cfhttp>
我想做这样的事情:
<cfset result = structNew() />
<cfset result["response"] = httpResponse />
<cfset result["sentContent"] = cfhttp.sentContent />
是否可以在不查看服务器日志的情况下获取已发送cfhttp的内容。我的服务器不在现场,获取日志将是PITA。