Hi Tim,
Using the Endorsed Standards Override Mechanism is essential if you want
to make use of JAXP 1.3 on JDK 1.4.2. If you merely put the jars on the
classpath you can end up with a hybrid mess where some of the API and
implementation get loaded from the JDK and other parts get loaded from t
Thanks for replying, Michael,
That's what the error looks like, for sure, but this error only
occurs on one machine, the other (devt) machine validates the
document correctly against the schema. I know for sure, as it throws
out about 4 errors (and rightly so) in regard to element data cont
Hi Tim,
Tim Carpenter <[EMAIL PROTECTED]> wrote on 02/08/2007 09:50:34 PM:
> Update:
>
> I have managed to beat the system into finding my xsd file by using
> the following:
>
> urlStr = new String("my-schema.xsd"); // file is local to the
> APPLICATION not to the source files.
> File xmlFil
Update:
I have managed to beat the system into finding my xsd file by using
the following:
urlStr = new String("my-schema.xsd"); // file is local to the
APPLICATION not to the source files.
File xmlFile = new File(urlStr);
FileReader xmlfr = new FileReader(xmlFile);
InputSource inputSourc