Re: Bug parsing xhtml-strict schema

2004-03-17 Thread Bob Foster
Neil Delima wrote: Hi Bob, Seems like this has changed in the schema specification errata. See http://www.w3.org/2001/05/xmlschema-errata#E2-18. Thanks very much! (Though I don't understand why this is an "Error" - looks like a spec change to me unless there was a real ambiguity and not just a n

Re: Bug parsing xhtml-strict schema

2004-03-17 Thread Neil Delima
Hi Bob, Seems like this has changed in the schema specification errata. See http://www.w3.org/2001/05/xmlschema-errata#E2-18. Bob Foster <[EMAIL PROTECTED]> wrote on 03/17/2004 05:37:40 PM: > Xerces 2.6.0 reports an error in: > > http://www.w3.org/2002/08/xhtml/xhtml1-strict.xsd > > again

Bug parsing xhtml-strict schema

2004-03-17 Thread Bob Foster
Xerces 2.6.0 reports an error in: http://www.w3.org/2002/08/xhtml/xhtml1-strict.xsd against this regex pattern (among others): Xerces is complaining about the - that begins [-+]. Yet XML Schema Part 2 http://www.w3.org/TR/xmlschema-2/#nt-charRange specifically allows a - to begin

Re: Preparsing XML Schema data types in Xerces-J

2004-03-17 Thread Henry Miller
The good news is -- I figured out my problem. The bad news is -- I didn't use the code snippet. Many apologies, but thank you very much for the assistance. After analyzing Elena's response more closely, I saw that I only needed to make one more leap from what I already had. Thank you Elena for

Re: Classloader issues with DOM3 & JDK 1.4.2

2004-03-17 Thread Alex Twisleton-Wykeham-Fiennes
On Wednesday 17 March 2004 14:19, Jacob Kjome wrote: > Try adding dom3-xml-apis.jar to JAVA_HOME/jre/lib/endorsed. this should (I believe) be identical to the -Xbootclasspath/p:/home/alex/java/lib/dom3-xml-apis.jar method in my invocation. However, am at the point where I'll try anything now so

Re: Classloader issues with DOM3 & JDK 1.4.2

2004-03-17 Thread Jacob Kjome
Try adding dom3-xml-apis.jar to JAVA_HOME/jre/lib/endorsed. Jake At 12:58 PM 3/17/2004 +, you wrote: All, apologies if this is an FAQ, but I haven't been able to track down what the solution to this one is either in the docs or the mailing lists. I have a small code snippet that tries to create

Classloader issues with DOM3 & JDK 1.4.2

2004-03-17 Thread Alex Twisleton-Wykeham-Fiennes
All, apologies if this is an FAQ, but I haven't been able to track down what the solution to this one is either in the docs or the mailing lists. I have a small code snippet that tries to create a DOMImplementation like so:- import org.apache.xerces.dom3.bootstrap.*; import org.w3c.dom.*; publ