[ 
https://issues.apache.org/jira/browse/CXF-6638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14955185#comment-14955185
 ] 

Sergey Beryozkin commented on CXF-6638:
---------------------------------------

Yes, this is strange but this test:
http://git-wip-us.apache.org/repos/asf/cxf/commit/1156c4ef

works in 3.0.x/3.1.x but not in 2.7.x. Enabling the chunking did fix it, thanks 
for identifying a solution. As I said it is good for 3.1.x/3.0.x too because we 
do want the large PATCH/etc payloads to avail of the chunking support...

> AsyncHTTPConduit does not allow body payloads with "PATCH" method
> -----------------------------------------------------------------
>
>                 Key: CXF-6638
>                 URL: https://issues.apache.org/jira/browse/CXF-6638
>             Project: CXF
>          Issue Type: Bug
>          Components: Transports
>    Affects Versions: 2.7.14
>            Reporter: Ramesh Reddy
>
> When using "PATCH" http method using the Async Http Transport, the payload is 
> always null.
> After debugging, I saw that _AsyncHTTPConduit_ class does not override the  
> "isChunkingSupported" method. Something like following is needed to be added 
> to this class to allow PATCH call with payload
> {code}
>     protected boolean isChunkingSupported(Message message, String httpMethod) 
> {
>         if ("PATCH".equals(httpMethod)) { 
>             return true;
>         }
>         return super.isChunkingSupported(message, httpMethod);
>     }
> {code}
> There may be other methods this need to support.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to