Hi!
I'm trying to use XmlHandler class ( link to Forum Nokia with code of XmlHandler Class ) on Symbian S60 3rd FP2 edition to read xml files. I have in my function this code:
CXmlHandler *iXmlHandler;
TFileName fileName;
iXmlHandler = CXmlHandler::NewL();
fileName.Append( KConfigFile );
iXmlHandler->StartParsingWithAoL( fileName );
But I don't know how to use data from KConfigFile...
Can anybody tell me how I can read nodes from my XML file and use data from nodes?