I have a RESTeasy-based REST web service (see below). I\'m trying to use the google REST client to execute a request to test my service, but I\'m unsure as to how the reques
You need to add this header to your request:
Accept-Encoding:multipart/form-data
usually you use Content type like this:
Content-Type: image/png
You can test it with Postman REST client
I've attached an image on how the form should be filled out.