inputStream = new BufferedInputStream(new FileInputStream(new File(path)));
XMLStreamReader parser = XMLInputFactory.newInstance().
createXMLStreamReader(inputStream);
StAXOMBuilder builder = new StAXOMBuilder(parser);
OMElement omElement = builder.getDocumentElement();
omElement.build();
return omElement;
} catch (FileNotFoundException e) {
throw new MessageBoxConfigurationException(MessageBoxConstants.MESSAGE_BOX_CONF
+ "cannot be found in the path : " + path, e);
} catch (XMLStreamException e) {