Jason <[EMAIL PROTECTED]> wrote on 10/24/2005 09:44:22 PM: > Hello, > > I'm in the process of converting a C++ project to java > and I have a quick question. The project uses the > xercesc progressive parse parseFirst( ), parseNext( ) > pair and I'm wondering if the equivalent functionality > exists in xercesj?
There is an equivalent but you have to use XNI directly. Have a look at XMLPullParserConfiguration [1]. Most (if not all) of the parser configurations [2] which ship with the parser implement this interface. > I can't find it if it does. > Thanks in advance to anyone who can offer a definitive > answer on the issue. > > -jason > > > > > __________________________________ > Yahoo! Mail - PC Magazine Editors' Choice 2005 > http://mail.yahoo.com > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > [1] http://xml.apache.org/xerces2-j/javadocs/xni/org/apache/xerces/xni/parser/XMLPullParserConfiguration.html [2] http://xml.apache.org/xerces2-j/faq-xni.html#faq-3 Michael Glavassevich XML Parser Development IBM Toronto Lab E-mail: [EMAIL PROTECTED] E-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
