IIS - ColdFusion, chunked transfer error

Ask a Question related to Coldfusion Server Administration, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. Variable Transfer Coldfusion > Flash
      I am attempting to transfer variables from this Cold Fusion script: <cfsetting enablecfoutputonly = "yes"> <cfprocessingdirective...
    2. #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...
    3. #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...
    4. 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...
    5. 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...
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139