package console; import java.io.InputStream; import org.w3c.dom.Element; import at.gv.egovernment.moaspss.util.DOMUtils; public class SchemaValidationTest { public static final String SCHEMA_ROOT = "/config/zuseSchema"; public static final String XML_NS_URI = "http://www.w3.org/XML/1998/namespace"; public static final String XML_SCHEMA_LOCATION = SCHEMA_ROOT + "xml.xsd"; public static final String XSI_NS_URI = "http://www.w3.org/2001/XMLSchema-instance"; public static final String XSI_SCHEMA_LOCATION = SCHEMA_ROOT + "XMLSchema-instance.xsd"; public static final String eDELIVERY20 = "http://reference.e-government.gv.at/namespace/zustellung/msg/phase2/20181206#"; public static final String eDELIVERY20_SCHEMA_LOCATION = SCHEMA_ROOT + "zuse_p2.xsd"; public static final String eDELIVERY_PERSON_20 = "http://reference.e-government.gv.at/namespace/persondata/phase2/20181206#"; public static final String eDELIVERY_PERSON_20_SCHEMA_LOCATION = SCHEMA_ROOT + "zuse_mypersondata_en_p2.xsd"; private static final String ZUSE_SCHEMAS = (XML_NS_URI + " " + XML_SCHEMA_LOCATION + " ") + (XSI_NS_URI + " " + XSI_SCHEMA_LOCATION + " ") + (eDELIVERY20 + " " + eDELIVERY20_SCHEMA_LOCATION + " ") + (eDELIVERY_PERSON_20 + " " + eDELIVERY_PERSON_20_SCHEMA_LOCATION); /** * Simple test. * * @param args not used yet * @throws Exception in case of an error */ public static void main(String[] args) throws Exception { InputStream is = SchemaValidationTest.class.getResourceAsStream("/zuse/msg.xml"); Element result = DOMUtils.parseXmlValidating(is); // Document result = DOMUtils.parseDocument(is, // true, ZUSE_SCHEMAS, null, new MOASPSSEntityResolver(), new MOAErrorHandler()); System.out.print(DOMUtils.serializeNode(result)); } }