Hello all... 

Apologies if you received this message more than once;
Last time i posted it, I forgot to put a subject line... 
 
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. 

I recently tried with CF 4.5.1. SP1, but it didn't work either.

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.

Reply via email to