I need to receive an HTTP Post Multipart which contains only 2 parameters:
- A JSON string
- A binary file
Whats the correct way to set the body? Since I have to test it using Chrome REST console is it possible to set the name of the JSON parameter? Should I read it as a simple String?
On the server side I'm using Resteasy+JBoss, and I'm going to read my Multipart body like this:
@POST
@Consumes("multipart/form-data")
public String postWithPhoto(MultipartFormDataInput multiPart) {
Map <String, List<InputPart>> params = multiPart.getFormDataMap();
String myJson = params.get("myJsonName").get(0).getBodyAsString();
InputPart imagePart = params.get("photo").get(0);
//do whatever I need to do with my json and my photo
}
Is this the way to go? So do I really need to associate my JSON string to the label "myJsonName"?
Thanks in advance