AW: CXF JAX-RS response chunk/buffer size

2016-01-11 Thread Julien Charon
Betreff: Re: CXF JAX-RS response chunk/buffer size Hi It might be possible to control with a non-Servlet, standalone CXF HTTP Jetty transport, but perhaps you can configure it with in Tomcat/etc server.xml, there might be a way to do it. Or add a ContainerResponseFilter with HttpServletResponse

Re: CXF JAX-RS response chunk/buffer size

2015-12-18 Thread Sergey Beryozkin
Hi It might be possible to control with a non-Servlet, standalone CXF HTTP Jetty transport, but perhaps you can configure it with in Tomcat/etc server.xml, there might be a way to do it. Or add a ContainerResponseFilter with HttpServletResponse injected - this filter can be shared between

CXF JAX-RS response chunk/buffer size

2015-12-17 Thread Julien Charon
Hi, Does CXF somehow support the configuration of the response chunk/buffer size for Transfer-Encoding: chunked? Until now, using non-CXF/non-JAX-RS implementation, I'm doing this by calling javax.servlet.ServletResponse.setBufferSize(int). However, I'd like to use response streaming as