Re: SAX parser validation set up

2004-11-11 Thread Vitaly Prapirny
Hi, Xiaofan Zhou wrote: But when I run the code, it never enters into the methods error(...) or fatalError(...). Does SAX2Count validate your xml instance ? Good luck ! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional com

RE: SAX parser validation set up

2004-11-11 Thread Xiaofan Zhou
Hi Vitaly, Thanks for the reply. I did set up an error handler, similar to SAX2Count example. Basically my xml processing class extends the DefaultHandler class in Xerces, and I implemented the following five methods: void endElement( const XMLCh* const uri,

RE: Xerces-C++ on OpenVMS

2004-11-11 Thread Abbate, Joseph M
Hi Gareth, You wrote ... > It is OK is submit them. They have a much higher chance of being > applied if they are compatible with 2.6. Do you know if your changes > are compatible? I don't know at this time, but I'll make sure to test them before I submit. Joe Joe Abbate Computer Associate

Re: Xerces-C++ on OpenVMS

2004-11-11 Thread Gareth Reakes
Hi, I have two questions for Xerces developers. First is whether it would be at all useful to contribute the 1.4 file changes, so that they can be branched or merged into subsequent releases. I don't think it would be of much use. 1.4 is very old and the code bases have diverged. Second, assumi

Re: SAX parser validation set up

2004-11-11 Thread Vitaly Prapirny
Hi, Xiaofan Zhou wrote: What else I need to do set up the parser correctly? And how about if the meta data is an XML schema? You have to setting up error handler. Please try to process your xml instance with SAX2Count sample and if it works than compare your sources with SAX2Count sources. SAX2Co