Hello: I'm using CXF 2.7.8
I would like to define a JAXRS client in Spring to inject it into my code and perform an asynchronous call. I've seen that I can inject an WebClient instance and I can perform ( for example ) post(Object body, javax.ws.rs.client.InvocationCallback<T> callback) The documentation is clear. But I don't see anything about how perform asynchronous calls when a proxy is injected. Is it possible ? Do I need to convert the proxy to WebClient and use WebClient's methods to perform calls ? It's not documented enough about JAXRS proxies and asynchronous calls, so I guess I will use WebClient, but I wonder these questions Thanks and regards
