Can someone tell me how to send 4-5 attachments as part of response. I mean i can create a FileRepresentation using
rep = new FileRepresentation(new File(
"xxx"), MediaType.TEXT_PLAIN, 0);
and set it in the response using
getResponse().setEntity(rep);
but how do I set multiple files in the response?

