Hi,
I am trying to post a form to a remote server using CFHTTP, the problem I am having is that the URL redirects and causes CF to give a connection failure error. The redirect property of the CFHTTP tag apparently handles up to 5 redirects, so I am unsure of why I am getting the error. Any help with this will be greatly appreciated.
...
TIA
Phil.
I am trying to post a form to a remote server using CFHTTP, the problem I am having is that the URL redirects and causes CF to give a connection failure error. The redirect property of the CFHTTP tag apparently handles up to 5 redirects, so I am unsure of why I am getting the error. Any help with this will be greatly appreciated.
...
Code:
<cfhttp url="[URL unfurl="true"]http://domain.com/signup.asp"[/URL]
method="post"
redirect="yes"
resolveurl="yes"
throwonerror="no">
<cfhttpparam name="username" value="#username#" type="url">
<cfhttpparam ...
</cfhttp>
TIA
Phil.