どうすれば解決できますか
Reference to undeclared namespace prefix: '%s'
Microsoft の msxml 実装に問題がありますか?
解析する必要がある値を含む政府の Web サイトからの XML フィードを使用しています。xml には名前空間が含まれています。
<?xml version="1.0" encoding="ISO-8859-1"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://purl.org/rss/1.0/"
xmlns:cb="http://www.cbwiki.net/wiki/index.php/Specification_1.1"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:xsi="http://www.w3c.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3c.org/1999/02/22-rdf-syntax-ns#rdf.xsd">
<item rdf:about="http://www.bankofcanada.ca/stats/rates_rss/STATIC_IEXE0101.xml">
<cb:statistics>
<cb:exchangeRate>
<cb:value decimals="4">1.0351</cb:value>
<cb:baseCurrency>CAD</cb:baseCurrency>
<cb:targetCurrency>USD</cb:targetCurrency>
<cb:rateType>Bank of Canada noon rate</cb:rateType>
<cb:observationPeriod frequency="daily">2011-05-09T12:15:00-04:00</cb:observationPeriod>
</cb:exchangeRate>
</cb:statistics>
</item>
</rdf:RDF>
XPath クエリを実行します。
/rdf:RDF/item/cb:statistics/cb:exchangeRate/cb:targetCurrency
次のエラーで失敗します。
Reference to undeclared namespace prefix: 'rdf'
編集:
元の XML を編集して名前空間の使用をすべて削除すると、次のようになります。
<?xml version="1.0" encoding="ISO-8859-1"?>
<rdf>
<item>
<statistics>
<exchangeRate>
<value decimals="4">1.0351</value>
<baseCurrency>CAD</baseCurrency>
<targetCurrency>USD</targetCurrency>
<rateType>Bank of Canada noon rate</rateType>
<observationPeriod frequency="daily">2011-05-09T12:15:00-04:00</observationPeriod>
</exchangeRate>
</statistics>
</item>
</rdf>
クエリ/rdf/item/statistics/exchangeRate/baseCurrency
は失敗せず、ノードを返します。
<baseCurrency>CAD</baseCurrency>
Microsoft XML を名前空間で動作させるにはどうすればよいですか?
編集 2
私はDOMDocumentオブジェクトにSelectionNamespacesを追加しようとしました:
doc.setProperty('SelectionNamespaces', 'xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cb="http://www.cbwiki.net/wiki/index.php/Specification_1.1"');
xpath クエリは失敗しなくなりましたが、ノードも返されません。
nodes = doc.selectNodes('/rdf:RDF/item/cb:statistics/cb:exchangeRate/cb:targetCurrency');