I have a xml document like this
<?xml version="1.1" encoding="UTF-8" standalone="yes"?>
<p:FatturaElettronica versione="1.1" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:p="http://www.fatturapa.gov.it/sdi/fatturapa/v1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<FatturaElettronicaHeader>
<DatiTrasmissione>
<IdTrasmittente>
<IdPaese>IT</IdPaese>
...
If i use:
Dim doc As New XmlDocument()
doc.Load(filePath)
I receive an error:
1.1 is not a valid version
Why, how can i do for read xml with this version?
Thanks