在 Groovy / Grails 中使用 XmlSlurper 解析 Pingdom XML 响应

发布于 2024-08-21 06:48:40 字数 1166 浏览 3 评论 0原文

我以前曾成功使用过 XmlSlurper,但在解析以下 XML 时遇到了困难 - 它是对 Pingdom API 调用的响应。我已尝试遵循命名空间声明示例,但我只收到有关 ns1 和 ns2 值的错误消息。有人能帮我指出正确的方向吗? xml 看起来像这样:-

<?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope 
         xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
         xmlns:ns1="urn:methods" 
         xmlns:xsd="http://www.w3.org/2001/XMLSchema"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns:ns2="urn:PingdomAPI"
         xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
         SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
        <SOAP-ENV:Body>
            <ns1:Auth_loginResponse>
                <return xsi:type="ns2:Auth_LoginResponse">
                    <status xsi:type="xsd:int">0</status>
                    <sessionId xsi:type="xsd:string">mysessionId</sessionId>
                </return>
            </ns1:Auth_loginResponse>
        </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>

使用 XmlSlurper 后,它只是将 0 和 mysessionId 连接到一个字符串

0mysessionId

I have used XmlSlurper successfully before, but am struggling to parse the following XML - it is a response from a call to the Pingdom API. I have tried following the namespace declaration examples, but I just get an error message on the ns1 and ns2 values. Can anybody help point me in the right direction? The xml looks like this:-

<?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope 
         xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
         xmlns:ns1="urn:methods" 
         xmlns:xsd="http://www.w3.org/2001/XMLSchema"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns:ns2="urn:PingdomAPI"
         xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
         SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
        <SOAP-ENV:Body>
            <ns1:Auth_loginResponse>
                <return xsi:type="ns2:Auth_LoginResponse">
                    <status xsi:type="xsd:int">0</status>
                    <sessionId xsi:type="xsd:string">mysessionId</sessionId>
                </return>
            </ns1:Auth_loginResponse>
        </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>

after using the XmlSlurper it just concatenates the 0 and mysessionId to one string

0mysessionId

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

束缚m 2024-08-28 06:48:40

试试这个,让你的 xml 存储在 xml 变量中:

def records = new XmlSlurper().parseText(xml).declareNamespace(
    'SOAP-ENV':'http://schemas.xmlsoap.org/soap/envelope/', 
    ns1:'urn:methods', 
    xsd:'http://www.w3.org/2001/XMLSchema', 
    xsi:'http://www.w3.org/2001/XMLSchema-instance',
    ns2:'urn:PingdomAPI'
)

println records.'SOAP-ENV:Body'.'ns1:Auth_loginResponse'.return.status
println records.'SOAP-ENV:Body'.'ns1:Auth_loginResponse'.return.sessionId

Try this, giving your xml is stored in the xml variable :

def records = new XmlSlurper().parseText(xml).declareNamespace(
    'SOAP-ENV':'http://schemas.xmlsoap.org/soap/envelope/', 
    ns1:'urn:methods', 
    xsd:'http://www.w3.org/2001/XMLSchema', 
    xsi:'http://www.w3.org/2001/XMLSchema-instance',
    ns2:'urn:PingdomAPI'
)

println records.'SOAP-ENV:Body'.'ns1:Auth_loginResponse'.return.status
println records.'SOAP-ENV:Body'.'ns1:Auth_loginResponse'.return.sessionId
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文