Hi,
My second question of the day. To make it easy for the developers, I'm
requested to build my web service with the following pattern
MyMethodResponse myMethod(MyMethodRequest request)
This doesn't work well with cxf because it adds a wrapper object over the
request and response.
Is there a way to tell it not to add this wrapper? Or what would be the
suggestion in my case?
I also notice a strange side effect of that. I'm generating the client side
code using the cxf maven plugin. I have this:
MyService {
FooRes foo(FooReq r);
}
MyService2 {
AnotherFooRes foo(FooReq r);
}
At generation, the @ResponseWrapper of MyService2.foo is giving FooRes for
the classname. The return type is correct thought. What's up? Bug?
Thanks
-
Henri