-
Bug
-
Resolution: Fixed
-
P3
-
5.0
-
1.3
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2078379 | 5.0 | Kohsuke Kawaguchi | P3 | Closed | Fixed | b32 |
Name: eaR10174 Date: 12/16/2003
The javax.xml.validation.ValidationHandler does not invoke the method
ignorableWhitespace() of the user-defined ContentHandler (see test.java below)
in case when there are whitespaces in the element content. The method should be invoked
according to the javadoc:
public abstract void setContentHandler(org.xml.sax.ContentHandler receiver)
...
A ValidatorHandler may buffer events to certain extent, but to allow
ValidatorHandler to be used by a parser, the following requirement has to
be met.
...
4. If ValidatorHandler determines that certain characters are "ignorable
whitespace", it should invoke the
ContentHandler.ignorableWhitespace(char[], int, int) callback instead of
the ContentHandler.characters(char[], int, int) callback. This is
necessary for a DocumentBuilder to properly implement
org.w3c.dom.Text#isWhitespaceInElementContent().
The bug appears in jdk1.5.0beta-b31 and affects a new JCK1.5 test:
api/javax_xml/validation/ValidatorHandler/index.html#GetSetContentHandler[GetSetContentHandler008]
------------------------------------test.java-----------------------------
import java.io.IOException;
import java.io.StringReader;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParserFactory;
import javax.xml.transform.stream.StreamSource;
import javax.xml.validation.Schema;
import javax.xml.validation.SchemaFactory;
import javax.xml.validation.ValidatorHandler;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import org.xml.sax.XMLReader;
import org.xml.sax.helpers.DefaultHandler;
public class test {
public static final String XSD = "<?xml version='1.0'?>\n"
+ "<schema xmlns='http://www.w3.org/2001/XMLSchema'\n"
+ " xmlns:test='jaxp13_test'\n"
+ " targetNamespace='jaxp13_test'\n"
+ " elementFormDefault='qualified'>\n"
+ " <element name='test'>\n"
+ " <complexType>\n"
+ " <sequence>\n"
+ " <element name='child' type='string'/>\n"
+ " </sequence>\n"
+ " </complexType>\n"
+ " </element>\n"
+ "</schema>\n";
public static final String XML = "<?xml version='1.0'?>\n"
+ "<ns:test xmlns:ns='jaxp13_test'>\n"
+ " <ns:child>\n"
+ " 123abc\n"
+ " </ns:child>\n"
+ "</ns:test>\n";
private ValidatorHandler createValidatorHandler(String xsd)
throws SAXException {
SchemaFactory schemaFactory =
SchemaFactory.newInstance("http://www.w3.org/2001/XMLSchema");
StringReader reader = new StringReader(xsd);
StreamSource xsdSource = new StreamSource(reader);
Schema schema = schemaFactory.newSchema(xsdSource);
return schema.newValidatorHandler();
}
private XMLReader createXMLReader() throws ParserConfigurationException,
SAXException {
SAXParserFactory parserFactory = SAXParserFactory.newInstance();
if (!parserFactory.isNamespaceAware()) {
parserFactory.setNamespaceAware(true);
}
return parserFactory.newSAXParser().getXMLReader();
}
private void parse(XMLReader xmlReader, String xml) throws SAXException,
IOException {
StringReader reader = new StringReader(xml);
InputSource inSource = new InputSource(reader);
xmlReader.parse(inSource);
}
public static void main(String argv[]) {
try {
new test().run();
} catch (Exception e) {
e.printStackTrace();
System.exit(1);
}
}
public void run() throws SAXException, ParserConfigurationException,
IOException {
XMLReader xmlReader = createXMLReader();
ValidatorHandler validatorHandler = createValidatorHandler(XSD);
xmlReader.setContentHandler(validatorHandler);
final boolean[] invoked = {false};
DefaultHandler contentHandler = new DefaultHandler() {
public void ignorableWhitespace(char[] ch,
int start,
int length)
throws SAXException {
invoked[0] = true;
}
};
validatorHandler.setContentHandler(contentHandler);
parse(xmlReader, XML);
if (!invoked[0]) {
System.out.println("Method ignorableWhitespace() was not invoked.");
} else {
System.out.println("OK");
}
}
}
--------------------------------------------------------------------------
% java -showversion test
java version "1.5.0-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-beta-b31)
Java HotSpot(TM) Client VM (build 1.5.0-beta-b31, mixed mode)
Method ignorableWhitespace() was not invoked.
--------------------------------------------------------------------------
======================================================================
The javax.xml.validation.ValidationHandler does not invoke the method
ignorableWhitespace() of the user-defined ContentHandler (see test.java below)
in case when there are whitespaces in the element content. The method should be invoked
according to the javadoc:
public abstract void setContentHandler(org.xml.sax.ContentHandler receiver)
...
A ValidatorHandler may buffer events to certain extent, but to allow
ValidatorHandler to be used by a parser, the following requirement has to
be met.
...
4. If ValidatorHandler determines that certain characters are "ignorable
whitespace", it should invoke the
ContentHandler.ignorableWhitespace(char[], int, int) callback instead of
the ContentHandler.characters(char[], int, int) callback. This is
necessary for a DocumentBuilder to properly implement
org.w3c.dom.Text#isWhitespaceInElementContent().
The bug appears in jdk1.5.0beta-b31 and affects a new JCK1.5 test:
api/javax_xml/validation/ValidatorHandler/index.html#GetSetContentHandler[GetSetContentHandler008]
------------------------------------test.java-----------------------------
import java.io.IOException;
import java.io.StringReader;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParserFactory;
import javax.xml.transform.stream.StreamSource;
import javax.xml.validation.Schema;
import javax.xml.validation.SchemaFactory;
import javax.xml.validation.ValidatorHandler;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import org.xml.sax.XMLReader;
import org.xml.sax.helpers.DefaultHandler;
public class test {
public static final String XSD = "<?xml version='1.0'?>\n"
+ "<schema xmlns='http://www.w3.org/2001/XMLSchema'\n"
+ " xmlns:test='jaxp13_test'\n"
+ " targetNamespace='jaxp13_test'\n"
+ " elementFormDefault='qualified'>\n"
+ " <element name='test'>\n"
+ " <complexType>\n"
+ " <sequence>\n"
+ " <element name='child' type='string'/>\n"
+ " </sequence>\n"
+ " </complexType>\n"
+ " </element>\n"
+ "</schema>\n";
public static final String XML = "<?xml version='1.0'?>\n"
+ "<ns:test xmlns:ns='jaxp13_test'>\n"
+ " <ns:child>\n"
+ " 123abc\n"
+ " </ns:child>\n"
+ "</ns:test>\n";
private ValidatorHandler createValidatorHandler(String xsd)
throws SAXException {
SchemaFactory schemaFactory =
SchemaFactory.newInstance("http://www.w3.org/2001/XMLSchema");
StringReader reader = new StringReader(xsd);
StreamSource xsdSource = new StreamSource(reader);
Schema schema = schemaFactory.newSchema(xsdSource);
return schema.newValidatorHandler();
}
private XMLReader createXMLReader() throws ParserConfigurationException,
SAXException {
SAXParserFactory parserFactory = SAXParserFactory.newInstance();
if (!parserFactory.isNamespaceAware()) {
parserFactory.setNamespaceAware(true);
}
return parserFactory.newSAXParser().getXMLReader();
}
private void parse(XMLReader xmlReader, String xml) throws SAXException,
IOException {
StringReader reader = new StringReader(xml);
InputSource inSource = new InputSource(reader);
xmlReader.parse(inSource);
}
public static void main(String argv[]) {
try {
new test().run();
} catch (Exception e) {
e.printStackTrace();
System.exit(1);
}
}
public void run() throws SAXException, ParserConfigurationException,
IOException {
XMLReader xmlReader = createXMLReader();
ValidatorHandler validatorHandler = createValidatorHandler(XSD);
xmlReader.setContentHandler(validatorHandler);
final boolean[] invoked = {false};
DefaultHandler contentHandler = new DefaultHandler() {
public void ignorableWhitespace(char[] ch,
int start,
int length)
throws SAXException {
invoked[0] = true;
}
};
validatorHandler.setContentHandler(contentHandler);
parse(xmlReader, XML);
if (!invoked[0]) {
System.out.println("Method ignorableWhitespace() was not invoked.");
} else {
System.out.println("OK");
}
}
}
--------------------------------------------------------------------------
% java -showversion test
java version "1.5.0-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-beta-b31)
Java HotSpot(TM) Client VM (build 1.5.0-beta-b31, mixed mode)
Method ignorableWhitespace() was not invoked.
--------------------------------------------------------------------------
======================================================================
- backported by
-
JDK-2078379 ValidationHandler does not invoke ContentHandler.ignorableWhitespace()
-
- Closed
-