Re: [Resteasy-users] ObjectMapper problems with Resteasy 3.0 beta5

2013-06-06 Thread Bill Burke
Aren't you using Wildfly? Again, I do not support Wildfly yet. On 6/6/2013 10:47 AM, Pascal Gélinas wrote: > Well, the stack trace clearly references Jackson 2 classes: > > Caused by: > com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: > Unrecognized field "access_token" (class >

Re: [Resteasy-users] ObjectMapper problems with Resteasy 3.0 beta5

2013-06-06 Thread Pascal Gélinas
Well, the stack trace clearly references Jackson 2 classes: Caused by: com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "access_token" (class org.jboss.resteasy.skeleton.key.representations.AccessTokenResponse), not marked as ignorable (4 known properties:

Re: [Resteasy-users] ObjectMapper problems with Resteasy 3.0 beta5

2013-06-05 Thread Bill Burke
Skeleton Key still uses Jackson 1.9.x On 6/4/2013 2:25 PM, Pascal Gélinas wrote: > Just thaught I'd chip in: I've seen in your class that you are using the > old annotations (JsonProperty) from the old package > org.codehaus.jackson.*. The new packages are com.fasterxml.jackson.*, so > make sure t

Re: [Resteasy-users] ObjectMapper problems with Resteasy 3.0 beta5

2013-06-04 Thread Pascal Gélinas
Just thaught I'd chip in: I've seen in your class that you are using the old annotations (JsonProperty) from the old package org.codehaus.jackson.*. The new packages are com.fasterxml.jackson.*, so make sure to use those; the class names haven't changed, but the packages did. That can cause som

Re: [Resteasy-users] ObjectMapper problems with Resteasy 3.0 beta5

2013-05-27 Thread Bill Burke
I have not tested Skeleton key with Wildfly nor the Jackson2 provider. I had some classloading issues when trying to use Jackson2 with AS7 and Resteasy so I never changed Skeleton key to use Jackson2. Getting Skeleton key to work with Wildfly is on my todo list, but I'm currently working on pas