Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2068182 | 5.0 | Neeraj Bajaj | P2 | Resolved | Fixed | b16 |
Per the JAXP 1.2 specification, if validation is off, the schemaLanguage
property should be ignored. That is, for this XML document:
<a/>
this code:
factory.setValidating(false);
parser = factory.newSAXParser();
parser.setProperty("http://java.sun.com/xml/jaxp/properties/schemaLanguage",
"http://www.w3.org/2001/XMLSchema");
parser.parse(...);
results in the following SAX error():
cvc-elt.1: Cannot find the declaration of element 'a'.
For more details refer to :
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18937
###@###.### 2003-04-15
Testcase attached
###@###.### 2003-05-19
property should be ignored. That is, for this XML document:
<a/>
this code:
factory.setValidating(false);
parser = factory.newSAXParser();
parser.setProperty("http://java.sun.com/xml/jaxp/properties/schemaLanguage",
"http://www.w3.org/2001/XMLSchema");
parser.parse(...);
results in the following SAX error():
cvc-elt.1: Cannot find the declaration of element 'a'.
For more details refer to :
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18937
###@###.### 2003-04-15
Testcase attached
###@###.### 2003-05-19
- backported by
-
JDK-2068182 JAXP schemaLanguage property not ignored when setValidating(false)
-
- Resolved
-