Get all child from tag XML
Locked
General and Desktop
-
Hello, I need get all child from a tag of the structure below
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ns2:listarAlgo xmlns:ns2="http://soap.myws.com.br/"> <return> <codigo>1111</codigo> <dataNascimento>1999-01-01</dataNascimento> <email>my@email.com</email> <nome>MyName</nome> <sexo>F</sexo> <grauInstrucao/> <identificador>349</identificador> <usuario><codigo>111</codigo> <email>my@email.com</email> <login>MyLogin</login> <nome>MyName</nome> <senha>Seinha</senha> </usuario> </return> </ns2:listarAlgo> </soap:Body> </soap:Envelope>
I need get all child of <return></return>
I'm using QDomDocument with no success...Thanks!