I have an apache server with rest APIs accepting Json object and produce Json object.
testing the sever using Chrome advanced rest client show no problems.
I then tried to create a jave client, using org.jboss.resteasy:
When trying to use this method to send object containing Hebrew characters such as the following JSON:
I'm getting the error code HTTP Status 400, error message: The request sent by the client was syntactically incorrect.
I never reach the server.
Sending the same object using Chrome advanced rest client works fine.
Sending it with English name also works.
The API:
thanks!