Hello all...
This is message i recently posted on the CF_SERVER list last week; Since i haven't
gotten any satisfying reply yet - actually, i haven't gotten any - i posting it here,
hoping to be more successful.
Are there any know issues with CFHTTP Post on a 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,
Patrick N.
==========================
<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>
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
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.