Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] how can i send large data into chunked form on jetty.

Hi,

On Tue, Jul 17, 2012 at 7:42 AM, SUMIT THAKUR
<sumit.thakur@xxxxxxxxxxxxxxx> wrote:
> hello ,
>
> how can  i send large data into chunked form on jetty.

If you want to send data chunked from server to client, you need to
set the "Transfer-Encoding: chunked" header, and then start writing on
the response OutputStream.

Simon
-- 
http://cometd.org
http://webtide.com
Developer advice, services and support
from the Jetty & CometD experts.
----
Finally, no matter how good the architecture and design are,
to deliver bug-free software with optimal performance and reliability,
the implementation technique must be flawless.   Victoria Livschitz


Back to the top