You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Sergey Beryozkin (JIRA)" <ji...@apache.org> on 2016/10/02 09:42:20 UTC

[jira] [Commented] (CXF-7057) CXF JAXRSClientFactoryBean proxy async support

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

Sergey Beryozkin commented on CXF-7057:
---------------------------------------

Neal, one other thing to consider: patching the Dubbot proxy creation code to include InvocationHandlerAware. If you look at the CXF code, it asks a Proxy helper to create a proxy for a custom interface and  InvocationHandlerAware:

https://github.com/apache/cxf/blob/master/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/JAXRSClientFactoryBean.java#L324

Either way I'm sure one way or the other the issue will be resolved :-)


> CXF JAXRSClientFactoryBean proxy async support
> ----------------------------------------------
>
>                 Key: CXF-7057
>                 URL: https://issues.apache.org/jira/browse/CXF-7057
>             Project: CXF
>          Issue Type: Wish
>          Components: JAX-RS
>    Affects Versions: 3.1.7
>         Environment: Linux Mac
>            Reporter: Neal Hu
>             Fix For: 3.1.8
>
>
> Say we have resource interface org.apache.cxf.Resource, and its impl org.apache.cxf.ResourceImpl, we can create client proxy via JAXRSClientFactoryBean as below;
> {code:java}
> Class<T> type = org.apache.cxf.Resource.class;
> JAXRSClientFactoryBean bean = new JAXRSClientFactoryBean();
>         bean.setAddress(baseAddress);
>         bean.setServiceClass(type);
>         bean.setProviders(providers);
>         bean.setFeatures(features);
>         bean.setThreadSafe(true);
>         T proxy = bean.create(type);
> {code}
> Then invoke the method via proxy.method1.
> As we know the spec client api can invoke via async mode, my question is if the dynamic proxy mode support async mode.
> We are developing micro service framework which based on CXF RS,  and the  comsumer's invoker is dynamicly generated by the clientfactory.create. Thanks.



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