i have to send multiple files to a RESTful Web Service (JAX-RS 2.0 Jersey) with my Jersey client.
At the server side I would like to have the following method:
public Response sendFiles(File[] files, String[] filenames)
How can I realize that in my Jersey Client? I don`t know how my post request should look like.
Can anybody tell me if this is possible and how this works with an code example? Can`t find a pasted solution here or anywhere else.