I am trying to force the use of HttpAsyncClient through the use of the contextual property "use.async.http.conduit" according documentation http://cxf.apache.org/docs/asynchronous-client-http-transport.html
However i don't know where/how to set those kind of contextual properties in my app.
I am using a proxy based client through
JAXRSClientFactoryBean factoryBean = new JAXRSClientFactoryBean();
factoryBean.setAddress("http://localhost:6061/services");
factoryBean.setServiceClass(MyServiceInterface.class);
documentCapture = (MyServiceInterface) factoryBean.create();
Does anyone knows how to set those kind of contextual properties and force HttpAsyncClient?
Thanks!