I'm trying to create a JAX-RS web service using CXF, and it seems that JSON serialization would only work one way.
if I specify the following:
@HttpMethod("PUT")
@UriTemplate("/foo")
@ConsumeMime("application/json")
I still get an XML SAX exception, which sort of implies, that CXF tries
to de-marshal the contens as if it was XML..
am I doing something wrong?
Akos
