I\'ve been working in a webservice that consumes and produces JSON files using Apache CXF in conjuction with Jackson. However, one of the service\'s methods should be
I faced similar issue sometime back.
The following code did the trick for me
@POST @Consumes("multipart/form-data") public void yourMethod() throws Exception { }
In short, it is I think the @Consumes annotation you are missing.
@Consumes