I have the same problem with XML and JSON. We have not found a solution yet, but I think it is related to JAXB.
So it turns out that the problem is that JAXB already comes with JDK6, and the dependencies on JBoss are wrong. They must find another solution for themselves, as is done now. Anyone how this can be solved:
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxb-provider</artifactId>
<version>1.2.1.GA</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.stream</groupId>
<artifactId>sjsxp</artifactId>
</exclusion>
</exclusions>
You will get RESTEASY JAXB provider, but not maven JAXB files.