Hi
No, setting this property is not really needed any longer.
With the latest CXFs it should just work with or without the async
conduit being loaded, Dan did some HTTPURLConnection reflective work.
Cheers, Sergey
On 05/10/16 10:02, Vjacheslav V. Borisov wrote:
Hi!
There is "How to use PATCH method in CXF" thread
http://stackoverflow.com/questions/32067687/how-to-use-patch-method-in-cxf
Where author is using
use.async.http.conduit to allow proxy client generated to work.
To do this he recommends to write interceptor:
if ( message.get(Message.HTTP_REQUEST_METHOD).equals("PATCH") {
message.put("use.async.http.conduit", true);}
Does this is preferred workaround to make PATCH method work in client?