I have set up a Cfhttp screen to load data into my application. I am using the
cfhttp tag to create a query variable that returns the data. I am using a comma
seperated file.

I have attached the code that I am using that generates the error.

The code works great on Development. When i move the code to production, the
command errors off with the following response:

Cfhttp Error Details: Connect Exception: Connection timed out: connect
Cfhttp Status Code: Connection Failure. Status code unavailable.
Cfhttp Text: YES
cfhttp.mimeType= Unable to determine MIME type of file.
cfhttp.charset=
url.filename = [url]http://www..../woodshutters.txt[/url]
Elapsed Time = 21 seconds>

I have the timeout set to 1200 seconds, as you can see the request times out
in only 21 seconds. I have also set the page timeout in the IIS server to 1200
seconds as well.

I am using ColdFusion MX 6.1.0. any help would be greatly appreciated.

Mike


<cfhttp method="Get" url="#url.file_name#" name="fd" timeout="1200"
throwonerror="no">


<cfif #cfhttp.errordetail# NEQ "">
<cfoutput>Cfhttp Error Details: #cfhttp.errordetail#<br>
Cfhttp Status Code: #cfhttp.statuscode#<br>
Cfhttp Text: #cfhttp.text#<br>
cfhttp.mimeType= #cfhttp.mimeType#<br>
<!--- cfhttp.Header= #cfhttp.header#<br> --->
cfhttp.charset= #cfhttp.charSet#<br>
url.filename = #url.file_name#<br>
Elapsed Time = #Datediff("s",form.start_datetime,Now())#>
</cfoutput>