Eric Covener wrote:
> 
> On Thu, Mar 5, 2009 at 7:27 AM, ginsohn <[email protected]> wrote:
>>
>> Hello,
>> I am rather unfamiliar with HTTP Server requirements. I am trying to
>> implement a simple HTTP 1.1 server that receives a GET request, and
>> transfers a 3gp (video) file to the client. All works fine except the
>> fact
>> that the client gets the file, but does not close the connection.
>> I do not have the length of the content I send out, so I cannot declare
>> it.
>>
>> Here are the headers I use:
>> statusCode: 200
>> Server: MyServer...
>> Date: <now>
>> Content-type: video/3gp
>> connection: close
>>
> 
> Connection: close means the server will close the connection when the
> content is transferred, so you're not waiting for the client to do so.
> 
> -- 
> Eric Covener
> [email protected]
> 
> Hi,
> Thanks for the reply. I've tried to avoid explicit session.close(), and
> used response.finishedWriting() instead. Do I have to explicitly close the
> session? Can't I signal the client any other way?
> 
> Thanks,
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: [email protected]
>    "   from the digest: [email protected]
> For additional commands, e-mail: [email protected]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/HTTP-Server-connection-hangs-tp22350633p22352776.html
Sent from the Apache HTTP Server - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [email protected]
   "   from the digest: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to