public OMElement mtomSample(OMElement element) throws Exception {
Attachments attachments = null;
attachments = MessageContext.getCurrentMessageContext().getAttachmentMap();
// Get image data
IncomingAttachmentStreams streams = attachments.getIncomingAttachmentStreams();
IncomingAttachmentInputStream stream = streams.getNextStream();
byte[] data = IOUtils.toByteArray(stream);
//setting response
OMFactory fac = OMAbstractFactory.getOMFactory();