Ask a Question related to Coldfusion Server Administration, Design and Development.
-
sebt81 #1
IIS - ColdFusion, chunked transfer error
Hi,
I have a ColdFusion page which is receiving urlencoded form variables via an
http post from another server.
As you may know, with the http protocol, a server can split large requests
into multiple chunks and issue a "Transfer-Encoding: chunked" header. When the
form post is being sent from certain mobile (cell/PDA) devices, the threshold
at which the server decides to split an http request into multiple chunks is
very low. In the mobile world this is a reasonably well-known issue in
client-server apps, however I have not dealt with this issue on a coldfusion
server before.
What I have found using a tcp/ip packet monitor is that IIS on the destination
server is acknowledging all the chunks as being part of the same connection.
However after using an automated dump of headers from GetHttpRequestData(), I
determined that the coldfusion page only ever sees the first chunk. This
suggests that IIS is not managing to combine the chunks back into a single
request correctly, or if it is, then it is not passing it onto the ColdFusion
server correctly.
Does anybody have any experience of this, or can at least confirm that
ColdFusion server can process chunked http requests?
Thanks in advance,
SebT
sebt81 Guest
-
Variable Transfer Coldfusion > Flash
I am attempting to transfer variables from this Cold Fusion script: <cfsetting enablecfoutputonly = "yes"> <cfprocessingdirective... -
#30329 [Opn->Fbk]: Error Fetching http body, No Content-Length, connection closed or chunked data
ID: 30329 Updated by: dmitry@php.net Reported By: thetaphi@php.net -Status: Open +Status: Feedback... -
#30329 [Csd->Opn]: Error Fetching http body, No Content-Length, connection closed or chunked data
ID: 30329 Updated by: lsmith@php.net Reported By: thetaphi@php.net -Status: Closed +Status: Open... -
how to disable "Transfer-Encoding: chunked"
Hello, ColdFusion 6/7 (on Linux/Apache 1.3/2) automatically adds the header "Transfer-Encoding: chunked" to all responses. I would like to turn... -
SOAP and Chunked Transfer
Hi, I have a .NET client and Java web service. I send an request and the answer with a correct SOAP message. But on the .NET client I get an... -
sebt81 #2
Re: IIS - ColdFusion, chunked transfer error
Looks like this is definitely an issue between IIS and CF, rather than an IIS
configuration problem. I was able to write an ASP page on the same server which
correctly received all the form variables from a multi-chunked request. So in
my case I can re-post the request onto the CF app from the ASP page so that my
application works, however this doesn't solve the underlying error that happens
with the coldfusion application server and IIS.
S.
sebt81 Guest



Reply With Quote

