Re: CXF 3.0.7 JAXRS POST read body

2015-12-14 Thread Sergey Beryozkin
Hi Perhaps it is supposed to work with JAX-RS, so I've fixed it as part of https://issues.apache.org/jira/browse/CXF-6709 I'd still recommend you to avoid dealing with Servlet request/response directly - one of the main ideas of JAX-RS was to provide a simpler/alternative mechanism. Thanks,

AW: CXF 3.0.7 JAXRS POST read body

2015-12-14 Thread Julien Charon
Hi, Thanks Sergey. You're right, I should make use of the JAX-RS mechanisms. But because I already ran into some problems, I am a little bit concerned facing further more severe problems especially when it comes to chunking etc. So I'd like to be able to run both variants of our application

CXF 3.0.7 JAXRS POST read body

2015-12-14 Thread Julien Charon
Hi everybody, I am currently refactoring a REST application whose implementation is based on a subclass of javax.servlet.http.HttpServlet and thus is using javax.servlet.http.HttpServletRequest and javax.servlet.http.HttpServletResponse quite extensively to use CXF and JAXRS. The refactored