1
I need to consume the following XML:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">
<NewDataSet>
<CarregaMunicipioFranqueados>
<Codigo_Municipio>2700201</Codigo_Municipio>
<codigo_pais>1058</codigo_pais>
<Pais>BRASIL</Pais>
<sigla_uf>AL</sigla_uf>
<Uf>ALAGOAS (AL)</Uf>
<Municipio>ANADIA</Municipio>
<Codigo_franqueado>490</Codigo_franqueado>
<Franqueado>ANDERSON TESTE</Franqueado>
</CarregaMunicipioFranqueados>
<CarregaMunicipioFranqueados>
<Codigo_Municipio>3100203</Codigo_Municipio>
<codigo_pais>1058</codigo_pais>
<Pais>BRASIL</Pais>
<sigla_uf>MG</sigla_uf>
<Uf>MINAS GERAIS (MG)</Uf>
<Municipio>ABAETE</Municipio>
<Codigo_franqueado>490</Codigo_franqueado>
<Franqueado>ANDERSON TESTE</Franqueado>
</CarregaMunicipioFranqueados>
</NewDataSet>
</string>
I need to search, for example, 3100203 and the name of Municipio ABAETE
This XML is in a URL, with the GET method I will consume this data on a site in PHP.
In this case it seems that you need to deserialize XML, not get it from a web-api?
– brazilianldsjaguar