I am trying to get some old code working, which used to use the
SAXParserFactory to create a SAXParser, and then it created an
"ObjectHandler" object to read objects from disk.

This ObjectHandler is (I believe) part of the JAXP API.
Where can I get its source? It's not in src.zip, and i can't find it
in xerces 2.7 either.

                XMLReader reader = XMLReaderFactory.createXMLReader();
                handler = new ObjectHandler(this, getClass().getClassLoader());
                reader.setContentHandler(handler);

I can't use setContentHandler on this object because it is not the
right interface.
Is there another ObjectHandler which is SAX2 compliant (implements
ContentHandler)  I should use instead?

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to