Does anyone know under what conditions the use of cfhttp returns "connection failure"
as the value of cfhttp.filecontent?
I tried submitting form data to a cgi script on a different server with the following
code, and all I kept getting was a connection failure. When I get rid of the form data
cfhttp connects normally and returns the default page when the cgi script is called
without any form data being passed to it. Unfortunately I don't have access to the cgi
script so I can't figure out what it does to the form data when it receives it.
Here it is:
<cfhttp url="http://www.somedomain.com/cgi-bin/script.pl" method="post"
resolveurl="yes">
<cfhttpparam type="FormField" name="login" value="#form.username#">
<cfhttpparam type="FormField" name="password" value="#form.password#">
</cfhttp>
<cfoutput>#cfhttp.filecontent#</cfoutput>
------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.