Hello all... Are there any know issues with CFHTTP Post on port number different from 80? I'm using CF 4.5.1, and can not get CFHTTP Post to work: I'm trying to "submit" a form to an email client that listens on port 8123 (see code below) Sometimes i get a "connection failure" message, or the script just hangs, eventually causing the server to crash. Thanks, Pat Ngatchou ========================== <cfparam name="attributes.passwd" default=""> <cfparam name="attributes.userid" default=""> <cfhttp url="http://mail.thesquare.com" method="POST" port="8123" timeout="10" resolveurl="true"> <cfhttpparam type="FORMFIELD" name="passwd" value="#attributes.passwd#"> <cfhttpparam type="FORMFIELD" name="userid" value="#attributes.userid#"> <cfhttpparam type="FORMFIELD" name="Use_Cookie" value="1"> <cfhttpparam type="FORMFIELD" name="Expire_Cache" value="1"> <cfhttpparam type="FORMFIELD" name="page" value="login"> </cfhttp> ------------------------------------------------------------------------------ To unsubscribe, send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body or visit the list page at www.houseoffusion.com
