Running on: Linux Mint 16, QtCreator 3.0.0 with Qt 5.2.0. tinyXML last version.
XML working with:
<users>
<user>
<username>testadmin</username>
<password>testpwd</password>
<privileges>2</privileges>
</user>
<user>
<username>testuser</username>
<password>testpwd</password>
<privileges>1</privileges>
</user>
Code that's not working:
void Server::loadUsersFile()
{
TiXmlDocument usersDoc("users.xml");
bool loadOk = usersDoc.LoadFile();
if(!loadOk) {
cout << "Error opening users file" << endl;
return;
}
TiXmlElement* rootChild = usersDoc.FirstChildElement("users");
TiXmlElement* userChild = rootChild->FirstChildElement("user");
TiXmlAttribute* pAttrib=userChild->FirstAttribute();
cout << pAttrib->Name();
}
pAttrib is NULL and I can't understand why. Maybe I didn't get the Child/Attribute relationship. Help appreciated.
Your first
user
element doesn't have any attributes. Attributes are data defined in the start tag of an element, so for theuser
element to have an attribute it would have to look something likewhere
type="posix"
is an attribute of theuser
element.To get the
username
element in an element, perhaps you wantor more safely