regarding xerces j parser

2007-02-08 Thread harikiran
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

Re: regarding xerces j parser

2007-02-08 Thread Dick Deneer
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...deeper:Schema for Validation picked up on one machine, not another

2007-02-08 Thread Tim Carpenter
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