[Resteasy-users] Custom Jackson Provider Not Being Used in Production

2013-05-16 Thread Philip Chapman
Guys, I have a strange issue that I can't get a handle on. A case of "It works on my machine" that's driving me crazy. I have implemented a subclass of org.jboss.resteasy.plugins.providers.jackson.ResteasyJacksonProvider, annotated the class with javax.ws.rs.ext.Provider and ensured that the fu

Re: [Resteasy-users] Custom Jackson Provider Not Being Used in Production

2013-05-16 Thread Philip Chapman
Everyone, As it turned out, I didn't have the javax.ws.rs.Consumes and javax.ws.rs.Produces annotations on my subclass of ResteasyJacksonProvider. Once I added those, it works fine. I'm still not sure why it worked on one machine and not another, but at least now it works consistantly. Hopefull