How to find data inside Italian Xml Invoice?

Hello i need to find specific data from this xml italian invoice.
example IdCodice and CodiceFiscale

<n0:FatturaElettronica versione="FPR12">
<FatturaElettronicaHeader>
<DatiTrasmissione>
<IdTrasmittente>
 <IdPaese>IT</IdPaese>
 <IdCodice>34535345345</IdCodice>
 </IdTrasmittente>
 <ProgressivoInvio>005YN</ProgressivoInvio>
 <FormatoTrasmissione>FPR12</FormatoTrasmissione>
 <CodiceDestinatario>0000000</CodiceDestinatario>
 </DatiTrasmissione>
<CedentePrestatore>
<DatiAnagrafici>
<IdFiscaleIVA>
 <IdPaese>IT</IdPaese>
 <IdCodice>34545345340</IdCodice>
 </IdFiscaleIVA>
 <CodiceFiscale>34536654</CodiceFiscale>
<Anagrafica>
 <Denominazione>ASAIHGDIOH .</Denominazione>
 </Anagrafica>
 <RegimeFiscale>RF01</RegimeFiscale>
 </DatiAnagrafici>
<Sede>
 <Indirizzo>Via Bettole</Indirizzo>
 <NumeroCivico>88</NumeroCivico>
 <CAP>24040</CAP>
 <Comune>Miihgih</Comune>
 <Provincia>RM</Provincia>
 <Nazione>IT</Nazione>
 </Sede>
<IscrizioneREA>
 <Ufficio>RM</Ufficio>
 <NumeroREA>343434</NumeroREA>
 <CapitaleSociale>434340</CapitaleSociale>
 <SocioUnico>SM</SocioUnico>
 <StatoLiquidazione>LN</StatoLiquidazione>
 </IscrizioneREA>
 </CedentePrestatore>
<CessionarioCommittente>
<DatiAnagrafici>
<IdFiscaleIVA>
 <IdPaese>IT</IdPaese>
 <IdCodice>234234234</IdCodice>
 </IdFiscaleIVA>
 <CodiceFiscale>64564565</CodiceFiscale>
<Anagrafica>
 <Denominazione>SDFGREG</Denominazione>
 </Anagrafica>
 </DatiAnagrafici>
<Sede>
 <Indirizzo>VIA DSFSFD 7</Indirizzo>
 <CAP>20124</CAP>
 <Comune>MILANO</Comune>
 <Provincia>MI</Provincia>
 <Nazione>IT</Nazione>
 </Sede>
 </CessionarioCommittente>
 </FatturaElettronicaHeader>
<FatturaElettronicaBody>
<DatiGenerali>
<DatiGeneraliDocumento>
 <TipoDocumento>TD24</TipoDocumento>
 <Divisa>EUR</Divisa>
 <Data>2023-01-31</Data>
 <Numero>76313</Numero>
 <ImportoTotaleDocumento>1232.00</ImportoTotaleDocumento>
 </DatiGeneraliDocumento>
<DatiOrdineAcquisto>
 <IdDocumento>.</IdDocumento>
 <Data>2022-11-14</Data>
 </DatiOrdineAcquisto>
<DatiDDT>
 <NumeroDDT>DDFGF0</NumeroDDT>
 <DataDDT>2023-01-25</DataDDT>
 <RiferimentoNumeroLinea>1</RiferimentoNumeroLinea>
 </DatiDDT>
 </DatiGenerali>
<DatiBeniServizi>
<DettaglioLinee>
 <NumeroLinea>1</NumeroLinea>
 <Descrizione>i.pro SDSDFG 32</Descrizione>
 <Quantita>7.000</Quantita>
 <UnitaMisura>M3</UnitaMisura>
 <PrezzoUnitario>100.0000</PrezzoUnitario>
 <PrezzoTotale>700.00</PrezzoTotale>
 <AliquotaIVA>22.00</AliquotaIVA>
<AltriDatiGestionali>
 <TipoDato>Dest Merce</TipoDato>
 <RiferimentoTesto>EDFHDIFH  25</RiferimentoTesto>
 </AltriDatiGestionali>
 </DettaglioLinee>
<DatiRiepilogo>
 <AliquotaIVA>22.00</AliquotaIVA>
 <ImponibileImporto>700.00</ImponibileImporto>
 <Imposta>154.00</Imposta>
 <EsigibilitaIVA>I</EsigibilitaIVA>
 </DatiRiepilogo>
 </DatiBeniServizi>
<DatiPagamento>
 <CondizioniPagamento>TP02</CondizioniPagamento>
<DettaglioPagamento>
 <ModalitaPagamento>MP05</ModalitaPagamento>
 <DataRiferimentoTerminiPagamento>2023-01-31</DataRiferimentoTerminiPagamento>
 <GiorniTerminiPagamento>59</GiorniTerminiPagamento>
 <DataScadenzaPagamento>2023-03-31</DataScadenzaPagamento>
 <ImportoPagamento>854.00</ImportoPagamento>
 <IstitutoFinanziario>INTESA SANPAOLO SPA</IstitutoFinanziario>
 <IBAN>IT0GERGEGHERHR062423</IBAN>
 </DettaglioPagamento>
 </DatiPagamento>
 </FatturaElettronicaBody>
 </n0:FatturaElettronica>

I try with deserialize xml without any results.
the problem is my xml start with n0:FatturaElettronica and i receive this error

For Each: The ‘:’ character, hexadecimal value 0x3A, cannot be included in a name.

How can i parse all these data?

Thanks

you will handle XML Namespaces as described here:
XML Extraction - Handling Namespaces (Tableau, Soap, OASIS types) - Help / Community - UiPath Community Forum

for more help please share the entire XML as text file us with us. Thanks

Can you give me an example please?
IT08967390967_005YN.xml (4.1 KB)

while analysing as described in the link we do see:
grafik

And with some luck we had the chance to ommit the namespace handling by the following:
grafik
And
grafik

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.