我有以下XML文档:
<samlp:LogoutRequest ID="123456789" Version="2.0" IssueInstant="200904051217">
<saml:NameID>@NOT_USED@</saml:NameID>
<samlp:SessionIndex>abcdefg</samlp:SessionIndex>
</samlp:LogoutRequest>
我想从中获取
SessionIndex
(即'abcdefg')的内容。我已经试过了:XPATH_QUERY = "LogoutRequest[@ID][@Version='2.0'][IssueInstant]/SessionIndex"
SAML_XMLNS = 'urn:oasis:names:tc:SAML:2.0:assertion'
SAMLP_XMLNS = 'urn:oasis:names:tc:SAML:2.0:protocol'
require 'nokogiri'
doc = Nokogiri::XML(xml)
doc.xpath(XPATH_QUERY, 'saml' => SAML_XMLNS, 'samlp' => SAMLP_XMLNS)
但出现以下错误:
Nokogiri::XML::SyntaxError: Namespace prefix samlp on LogoutRequest is not defined
Nokogiri::XML::SyntaxError: Namespace prefix saml on NameID is not defined
Nokogiri::XML::SyntaxError: Namespace prefix samlp on SessionIndex is not defined
我尝试过将 namespace 添加到XPath查询中,但这并没有改变任何内容。
为什么我不能说服Nokogiri命名空间有效?
最佳答案
看起来该文档中的命名空间似乎没有正确声明-根节点上应该有xmlns:samlp
和xmlns:saml
属性。在这种情况下,Nokogiri本质上会忽略 namespace (因为它无法将它们映射到URI或URN),因此如果删除它们,则XPath可以使用,即
doc.xpath(XPATH_QUERY)