| Article: |
XML Document Validation with an XML Schema | |
| Subject: | I only get Errors :-/ | |
| Date: | 2005-03-25 10:48:58 | |
| From: | dvohra09 | |
|
Response to: I only get Errors :-/
|
||
| Add the xerces jar files to the System CLASSPATH. | ||
Showing messages 1 through 4 of 4.
-
Not able to get it to work :(
2005-04-20 00:19:36 java_kid [Reply | View]
-
Not able to get it to work :(
2005-04-20 14:10:39 Deepak Vohra [Reply | View]
Set the schema validation and schema validation full-checking features.
parser.setFeature("http://apache.org/xml/features/validation/schema",
true);
parser.setFeature("http://apache.org/xml/features/validation/schema-full-checking",
true);
Because the schema validation is not set the parser parses with a DTD which may not be specified.
-
Not able to get it to work :(
2005-04-20 14:09:52 Deepak Vohra [Reply | View]
Set the schema validation and schema validation full-checking features.
[code]parser.setFeature("http://apache.org/xml/features/validation/schema",
true);
parser.setFeature("http://apache.org/xml/features/validation/schema-full-checking",
true); [/code]
Because the schema validation is not set the parser parses with a DTD which may not be specified.
-
Not able to get it to work :(
2005-04-20 04:44:13 Deepak Vohra [Reply | View]
For which parser do you get the errors?
Xerces or JAXP?





it is trying to validate the file from a DTD and gives me the following :
Parsing error: Document root element "catalog", must match DOCTYPE root "null".
Parsing error: Document is invalid: no grammar found.
Parsing completed with errors
Any idea what the problem could be??