Attachments attachments = null;
attachments = (Attachments)MessageContext.getCurrentMessageContext()
.getProperty(MTOMConstants.ATTACHMENTS);
// Get image data
IncomingAttachmentStreams streams = attachments.getIncomingAttachmentStreams();
IncomingAttachmentInputStream stream = streams.getNextStream();
byte[] data = IOUtils.getStreamAsByteArray(stream);
//setting response
OMFactory fac = OMAbstractFactory.getOMFactory();