The SAX2 parser that comes with the JDK 1.4.x (crimson) does not support XMLSchema (it uses DTDs for document structure). jBPM defines JPDL in XML Schemas, not DTDs, so you need a parser that supports .xsd.
The exception being thrown is saying, "you're trying to set a SAX parser property and the current XML reader doesn't grok that property". In this case, the property is "http://java.sun.com/xml/jaxp/properties/schemaLanguage" Xerces's parser DOES support XMLSchema. When you toss in the Xerces JAR (I'm using 2.8.0), the JDK quietly defers to the included parser. In JDK 1.5, Xerces is used as the parser in the JAXP default implementation. So, in JDK 1.5 XML Schemas are supported out-of-the-box. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3938820#3938820 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3938820 ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
