[jbossws-issues] [JBoss JIRA] (JBWS-3833) @UseAsyncMethod doesn't seem to work on JBoss

Tadayoshi Sato (JIRA) issues at jboss.org
Sun Sep 28 21:29:02 EDT 2014


    [ https://issues.jboss.org/browse/JBWS-3833?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13006725#comment-13006725 ] 

Tadayoshi Sato commented on JBWS-3833:
--------------------------------------

Alessio,

Oops!  You're completely right. Adding {{<async-supported>true</async-supported>}} in {{web.xml}} and the {{"org.apache.cxf.impl"}} depdency to {{jboss-deployment-structure.xml}}, now the reproducer works as expected. I preconceived that no extra config is needed for enabling continuation on JBoss.

Thanks anyway for your investigation.

> @UseAsyncMethod doesn't seem to work on JBoss
> ---------------------------------------------
>
>                 Key: JBWS-3833
>                 URL: https://issues.jboss.org/browse/JBWS-3833
>             Project: JBoss Web Services
>          Issue Type: Bug
>          Components: jbossws-cxf
>    Affects Versions: jbossws-cxf-4.3, jbossws-cxf-4.3.1
>            Reporter: Tadayoshi Sato
>            Assignee: Alessio Soldano
>         Attachments: async.zip
>
>
> I developed the following WS endpoint that uses {{@UseAsyncMethod}}:
> {code:java}
> @WebService(...)
> public class GreetingServiceImpl implements GreetingService {
>     ...
>     @WebMethod
>     @UseAsyncMethod
>     public String hello(String name) { ... }
>     public Future<HelloResponse> helloAsync(final String name, final AsyncHandler<HelloResponse> asyncHandler) { ... }
> {code}
> My expectation with {{@UseAsyncMethod}} is that whenever the {{hello()}} operation is invoked {{helloAsync()}} is eventually executed on JBoss (WildFly 8 or EAP 6). However, it really is not.
> I tested the same endpoint by launching it using {{Endpoint.publish(...)}} as well and it works as expected, so I don't think it's an issue with CXF itself but with JBoss WS integration.
> Attached please see the complete reproducer project {{async.zip}} for detail.



--
This message was sent by Atlassian JIRA
(v6.3.1#6329)


More information about the jbossws-issues mailing list