Hi everyone!
I am trying to query an xml file va XQL command, but i get an XMLException.
The xml file contains:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<CancelarCFDIConValidacionResponse xmlns="http://tempuri.org/">
<CancelarCFDIConValidacionResult xmlns:a="http://schemas.datacontract.org/2004/07/TES.TFD.V33.Negocios" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<a:DetallesCancelacion>
<a:DetalleCancelacion>
<a:CodigoResultado>CANC999</a:CodigoResultado>
<a:EsCancelable/>
<a:MensajeResultado>Error no clasificado - Documento no localizado en el SAT</a:MensajeResultado>
<a:UUID>158837AA-7E57-7E57-7E57-9F1044D6DA38</a:UUID>
</a:DetalleCancelacion>
</a:DetallesCancelacion>
<a:MensajeError/>
<a:MensajeErrorDetallado i:nil="true"/>
<a:OperacionExitosa>false</a:OperacionExitosa>
<a:XMLAcuse i:nil="true"/>
</CancelarCFDIConValidacionResult>
</CancelarCFDIConValidacionResponse>
</s:Body>
</s:Envelope>
The comand i am using to do the query is:
operacionExitosaNodos = oParser.XQL("//a:OperacionExitosa")
But i get the Exception i that line of code.
Can anyone help me get my mistake?
regards!
vadir