Re: [Resteasy-users] Replacing ProxyFactory with RestEasyWebTarget does not work

2013-11-26 Thread Bill Burke
This is a Resteasy Client - JAX-RS 2.0 mismatch migration problem. Replace: response.getEntity() with: response.readEntity(String.class); replace String.class to whatever class you want to marshal to. getEntity() returns null if you haven't unmarshalled anything with readEntity(). On

Re: [Resteasy-users] Replacing ProxyFactory with RestEasyWebTarget does not work

2013-11-26 Thread Gabriella Turek
bbu...@redhat.com Subject: Re: [Resteasy-users] Replacing ProxyFactory with RestEasyWebTarget does not work To: resteasy-users@lists.sourceforge.net Message-ID: 529509ec.3000...@redhat.com Content-Type: text/plain; charset=windows-1252; format=flowed This is a Resteasy Client - JAX-RS 2.0

Re: [Resteasy-users] Replacing ProxyFactory with RestEasyWebTarget does not work

2013-11-26 Thread Gabriella Turek
...@redhat.com Subject: Re: [Resteasy-users] Replacing ProxyFactory with RestEasyWebTarget does not work To: resteasy-users@lists.sourceforge.net Message-ID: 529509ec.3000...@redhat.com Content-Type: text/plain; charset=windows-1252; format=flowed This is a Resteasy Client - JAX-RS 2.0 mismatch