Hi,
I am trying to run read the xml/docx from the jar and accessing it. It runs fine in java 6. but my server is running in java 5. I want to read and write the docx in java 5 in my unix server. Could you please help in this to resolve or suggest any other alternates.
Code Snippet:
InputStream resourceInputStream = this.getClass().getClassLoader().getResourceAsStream("RAS_Input.xml");
JAXBContext jc = Context.jcXmlPackage;
Unmarshaller u = jc.createUnmarshaller();
u.setEventHandler(new org.docx4j.jaxb.JaxbValidationEventHandler());
org.docx4j.xmlPackage.Package wmlPackageEl ...