PostMethod post = new PostMethod("http://localhost:" + PORT + "/bookstore/books/image");
String ct = "multipart/mixed";
post.setRequestHeader("Content-Type", ct);
Part[] parts = new Part[2];
parts[0] = new FilePart("image",
new ByteArrayPartSource("testfile.png", new byte[1024 * 9]),
"image/png", null);
parts[1] = new FilePart("image",
new ByteArrayPartSource("testfile2.png", new byte[1024 * 11]),
"image/png", null);
post.setRequestEntity(new MultipartRequestEntity(parts, post.getParams()));
HttpClient httpclient = new HttpClient();