Details
Description
I'm trying to call a jax-rs service interface in a one-way fashion, using jms transport.
I think this should work because of this documentation: http://cxf.apache.org/docs/jax-rs-advanced-features.html#JAX-RSAdvancedFeatures-Onewayinvocations
There, i read that both the Oneway annotation and the "OnewayRequest" client header play a role.
However, I didn't get it to work.
I'm attaching junit tests where i basically iterate through these threee variables:
- header "OnewayRequest" set/not set
- calling a method anotated/not annotated with "Oneway"
- calling a method returning Result vs. calling a void method
=> i.e. 8 individual tests
From those scenarios, only the two ones with "OnewayRequest not set" that call a not-annotated method work as i would have expeced.
Basically with "Oneway" i get a java.lang.NullPointerException at org.apache.cxf.jaxrs.client.AbstractClient.setResponseBuilder(AbstractClient.java:398)
and with the header being set i eventually get a client timeout.
So there might be two issues, or i'm getting something wrong with the config, but probably there is something to fix here..
Best regards, Tobias