> Here you are:
> 
> virtual void SAXParser::startElement(const XMLElementDecl &elemDecl, 
const 
> unsigned int uriId,
> 
>             const XMLCh *const elemPrefix,const RefVectorOf< XMLAttr > 
> &attrList,
> 
>             const unsigned int attrCount,const bool isEmpty,const bool 
> isRoot    )
> 
> {

The SAXParser does not support namespaces, so I'm not surprised you're 
getting weird results.  Use a SAX2XMLReader if you want namespace support. 
 The other advantage is you can use SAX2 ContentHandler instead of 
deriving from SAXParser and using the XMLDocumentHandler member functions.

Dave

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

Reply via email to