Reference to undeclared namespace prefix when parsing MSXML

前端 未结 3 1028
一生所求
一生所求 2021-02-02 13:15

How do I solve the

Reference to undeclared namespace prefix: \'%s\'

problem with Microsoft\'s msxml implementation?


I\'m using a

相关标签:
3条回答
  • 2021-02-02 13:46

    If you are using XMLSerializer and see this error, it is likely that you are running into the IE bug described here:

    https://stackoverflow.com/a/11399681

    It took me a lot of time to realize that this was happening, so I thought it best to link these two issues.

    0 讨论(0)
  • 2021-02-02 13:56
    doc.setProperty('SelectionNamespaces', 'xmlns:rss="http://purl.org/rss/1.0/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cb="http://www.cbwiki.net/wiki/index.php/Specification_1.1"');
    

    Dont forget to load the xsd file or schema to the xmldoc object

    is the way to go

    I dont have enough reputation to comment. But that bit there saved me a lot of time.

    Thank you so much

    0 讨论(0)
  • 2021-02-02 14:11

    Using SelectionNamespaces is the correct approach, you are just missing a namespace.

    Notice that your XML document explicitly sets the default namespace as follows:

    xmlns="http://purl.org/rss/1.0/"
    

    This means that any element without a prefix, such as the item element, is actually in the default namespace. So if you want to select that element with an XPath expression, you must first set an appropriate selection namespace.

    To do this, you can change your call to setProperty like so:

    doc.setProperty('SelectionNamespaces', 'xmlns:rss="http://purl.org/rss/1.0/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cb="http://www.cbwiki.net/wiki/index.php/Specification_1.1"');
    

    Here you've assigned the default namespace from the document to the rss: prefix in your XPath expression. With that change in place, the following XPath expression should work correctly:

    nodes = doc.selectNodes('/rdf:RDF/rss:item/cb:statistics/cb:exchangeRate/cb:targetCurrency');
    

    It works because it references the item element using the correct namespace. The fact that the prefix differs between the XPath expression and the original document is immaterial. It is the namespace which the prefix is bound to that matters.

    0 讨论(0)
提交回复
热议问题