|
[XQuery Talk Mailing List Archive Home] [By Date] [By Thread] [By Subject] [By Author] [Recent Entries] [Reply To This Message] Fwd: xmlns ignoreAndrew Welch andrew.j.welch at gmail.comTue Sep 15 15:29:00 PDT 2009
> XQueryCompiler comp = proc.newXQueryCompiler();
>
> XdmNode source = proc.newDocumentBuilder().build(new
> StreamSource(inputFile));
>
>
>
> XQueryExecutable exp = comp.compile("/NFe/infNFe/ide/natOp");
[snip]
> <?xml version="1.0" encoding="UTF-8"?>
> <NFe xmlns="http://www.portalfiscal.inf.br/nfe">
> <infNFe Id="NFe2907" versao="1.10">
Either change your query to include the namespace eg:
declare namespace f = "http://www.portalfiscal.inf.br/nfe";
with
/f:NFe/f:infNFe/f:ide/f:natOp
or declare the namespace on the XQueryCompiler:
http://www.saxonica.com/documentation/dotnetdoc/Saxon/Api/XQueryCompiler.html
--
Andrew Welch
http://andrewjwelch.com
Kernow: http://kernowforsaxon.sf.net/
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






