Hi Gabo
I'm bewildered :-) I've no idea where this <Result> is coming from...I've searched the CXF code base for expressions containing
'Result' and found no obvious culprit...
Can you please confirm your own code (interceptors, etc) does not wrap the
message text ?
Can you also do System.out.println(response.getEntity().toString()) in your
mapper, before returning ?
Thanks, Sergey
I keep getting this in the tcpmon:
<Result>message</Result>
Hi Sergey,
Thanks for the quick reply. Well, I would be using the same set of providers for what I am working on. But yes, I'll keep that in
mind.
> I'm not sure which <Result> tag you're referring to - I couldn't find
any references on the wiki.
I keep getting this in the tcpmon:
<Result>message</Result>
This is how I defined the toResponse()
ResponseBuilder rb = Response.status(500);
rb.type(MediaType.TEXT_PLAIN);
rb.entity("message");
I was wondering if the <Result> could be removed. So it would be just "message".
Again, my thanks.
Gabo