@Test
public void testFoxmlValidation() throws Exception {
InputStream in =
new FileInputStream(RESOURCES + "demo/demo-objects/foxml/local-server-demos/simple-image-demo/obj_demo_5.xml");
DOValidatorXMLSchema dov =
new DOValidatorXMLSchema(RESOURCES + "xsd/foxml1-1.xsd");
dov.validate(in);
}