XmlSlurper使用命名空间追加节点

时间:2013-04-12 15:57:23

标签: groovy xmlslurper

我正在尝试使用xmlslurper

将节点附加到我的请求中
Service.appendNode{
  ifx:DepAcctId{
    if (acctId!="<!-->"){ifx:AcctId("123")}
  }
}

这导致

<DepAcctId>
  <AcctId>123</AcctId>
</DepAcctId>

我希望它附加名称空间,比如

<if:DepAcctId>
  <ifx:AcctId>123</ifx:AcctId>
</ifx:DepAcctId>

请帮忙。

这是我正在使用的确切代码。

holderRequest = tsuite.getTestCaseAt(2).getTestStepByName(tcName).testRequest.getRequestContent()
request = new XmlSlurper(true,true).parseText(holderRequest).declareNamespace(v2:'http://www.fnf.com/xes/services/acct/acctinq/v2_1',
    ifx:"http://www.ifxforum.org/IFX_150",soapenv:"http://schemas.xmlsoap.org/soap/envelope/", xes:"http://www.fnf.com/xes")
Service = request.'soapenv:Body'.'v2:AcctInqRq'
Service.appendNode {
    ifx:DepAcctId {
        if (acctId!="<!-->"){ifx:AcctId(acctId)}
        if (acctType!="<!-->"){ifx:AcctType(acctType)}
        if (BankInfo!="<!-->"){ifx:BankInfo(BankInfo)}
    }
}
xmlBuilder = new StreamingMarkupBuilder()
writer = xmlBuilder.bind {
    mkp.declareNamespace(soapenv:"http://schemas.xmlsoap.org/soap/envelope/",ifx:"http://www.ifxforum.org/IFX_150",
        v2:"http://www.fnf.com/xes/services/acct/acctinq/v2_1",xes:"http://www.fnf.com/xes")
    mkp.yield request
}
holderRequest = groovyUtils.getXmlHolder(XmlUtil.serialize(new StreamingMarkupBuilder().bind {mkp.yield request}))
log.info holderRequest.getXml()
tsuite.getTestCaseAt(2).getTestStepByName(tcName).getProperty("request").setValue(holderRequest.getXml())

标签已添加但没有ifx名称空间前缀。

1 个答案:

答案 0 :(得分:0)

你试过了吗?

Service.appendNode{
  'ifx:DepAcctId'{
    if (acctId!="<!-->"){'ifx:AcctId'("123")}
  }
}