Connection Failure with Yahoo Web Services and ColdFusion
By Pete Freitag
If you tried using the Yahoo Web Services with CFHTTP and your cfhttp.filecontent
variable had the value: Connection Failure
, or if you had throwonerror="true"
and you got the error: Connection Failure: Status code unavailable
it is due to an encoding issue. You need to set charset="utf-8"
in your CFHTTP
call.
Yahoo point's out in their FAQ item: Why does ColdFusion keep giving me a "Connection Failure" message?
It's an encoding issue. You need to add <cfhttpparam type="Header" name="charset" value="utf-8" /> to your cfhttp call and it should work.
This didn't work for me when I tried it, only setting the charset
attribute in CFHTTP did the trick for me. What I suspect is that in ColdFusion MX 7 setting the header with CFHTTPPARAM works, but does not in 6.1
Connection Failure with Yahoo Web Services and ColdFusion was first published on April 01, 2005.
The Fixinator Code Security Scanner for ColdFusion & CFML is an easy to use security tool that every CF developer can use. It can also easily integrate into CI for automatic scanning on every commit.
Try Fixinator
CFBreak
The weekly newsletter for the CFML Community
Comments
<cfhttp throwonerror="Yes" timeout="5200" resolveurl="Yes" redirect="No"
METHOD="POST"
URL="https://test123-dev.test.com/MyApp/index.cfm"
PATH="/my/data/is_here"
FILE="test1.html">
<CFHTTPPARAM type="formfield" name="fuseaction" value="reports:PrintRpts">
</cfhttp>
can someone pls explain why this code throws an exception as stated above. The other thing I have in url is https, is there special settings need to be done on server so that this exception can be stopped. Thanks in advance for your help.
awesome site and a great CF resource, and it's quickly become a daily for me :)