private void parse() throws SAXException {
ContentHandler handler = getContentHandler();
// <root xmlns='http://springframework.org'><string>Foo</string></root>
handler.startDocument();
handler.startPrefixMapping("", "http://springframework.org");
handler.startElement("http://springframework.org", "root", "root", new AttributesImpl());
handler.startElement("http://springframework.org", "string", "string", new AttributesImpl());
handler.characters("Foo".toCharArray(), 0, 3);
handler.endElement("http://springframework.org", "string", "string");
handler.endElement("http://springframework.org", "root", "root");