hello,
Am facing a problem when using the Xerces parser bundeled with xalan 2.7.
when the xml is parsed, a version attribute is associated with every element
in the xml.
this version attribute has the value 1.0.
my guessing is it is including the version from (am not
sure though).
Is this some pr
Hari,
I can only explain this when the schema specifies version attributes
with default values ( equal to 1.0) for every element.
So please check your schema if this is the case.
Regards
Dick Deneer
Op 8-feb-2007, om 9:55 heeft harikiran het volgende geschreven:
hello,
Am facing a problem
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