http://www.mkyong.com/webservices/jax-rs/restful-java-client-with-jersey-client/
I used this link to make a rest call from my application. Here I can pass one object as an input parameter.
Client client = Client.create();
WebResource webResource = client .resource("http://localhost:8080/RESTfulExample/rest/json/metallica/post");
String input = "{\"singer\":\"Metallica\",\"title\":\"Fade To Black\"}";
ClientResponse response = webResource.type("application/json") .post(ClientResponse.class, **input**);
I need to pass multiple input parameters (like image,string, etc) in the place of input but not as one object. How could I resolve this issue?