This content has been marked as final.
Show 1 reply
-
1. Re: ProcessingException: RESTEASY003215
boldt Jul 7, 2016 12:20 PM (in response to boldt)Finally, after one day of debugging: Removing the ClientConfig is the solution!
Client client = ClientBuilder.newClient();
Response res = client.target(url).request().post(Entity.entity("DATA", MediaType.TEXT_PLAIN));Why is the
ClientConfigforcing the issue?