请帮忙,我的groupy标记器有问题。
针对端点MYENDPOINT和操作MYACTION的工作SOAP请求:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:SPECIAL">
<soapenv:Header>
<urn:xsdInfo>
<urn:schemaLocation>SCHEMALOCATION</urn:schemaLocation>
</urn:xsdInfo>
<urn:category>Data Tables</urn:category>
<urn:userInfo>
<urn:sessionId>XXXXX</urn:sessionId>
</urn:userInfo>
</soapenv:Header>
<soapenv:Body>
<urn:add>
<urn:DataTables urn:table_name="testtable">
<!--Zero or more repetitions:-->
<urn:each_record>
<urn:s1>Somedinputdata</urn:s1>
</urn:each_record>
</urn:DataTables>
</urn:add>
</soapenv:Body>
</soapenv:Envelope>
尝试使用作为wslite SOAP-Client对象中的闭包的makrup构建器复制它不起作用(关于命名空间问题,我认为:
def bmClient = new SOAPClient('MYENDPOINT')
def response = bmClient.send(SOAPAction:'MYACTION') {
header{
xsdInfo('xmlns':'urn:soap.bigmachines.com'){
schemaLocation('SCHEMALOCATION')
}
category('Data Tables')
userInfo(){
sessionId('XXXXX')
}
}
body{
add('xmlns':'urn:SPECIAL'){
// PROBLEM IS HERE: should be urn:table_name but then it says urn is not defined as namespace..
DataTables('table_name':'testtable'){
each_record(){
s1('something')
}
}
}
}
}
return response.addResponse.status.message.text()
}catch(e){
println 'Problem in addToDataTable Session ID: '+e.printStackTrace()
}
}
目前它说:
wslite.soap.SOAPFaultException: soapenv:INIT-ERR - The element category, is required in the header.
虽然指定了一个类别...... 我只是被困在这里,有人知道如何创建
<urn:DataTables urn:table_name="testtable">
在标记闭包中是否正确?
我认为这是问题所在,因为我有另一个运行quity的web服务在相同的逻辑上,但它没有...
如果有人可以提供帮助,我会很高兴,我正在第二天工作......
答案 0 :(得分:3)
如果要完全匹配结构,则应使用urn
在信封上定义envelopeAttributes
命名空间,并将其用于嵌套项目,如下所示:
def response = bmClient.send(SOAPAction:'MYACTION') {
envelopeAttributes ('xmlns:urn' : 'urn:SPECIAL') // watch out for brackets here!
header{
'urn:xsdInfo'{
'urn:schemaLocation'('SCHEMALOCATION')
}
'urn:category'('Data Tables')
'urn:userInfo' {
'urn:sessionId'('XXXXX')
}
}
body{
'urn:add' {
'urn:DataTables'('urn:table_name':'testtable'){
'urn:each_record'{
'urn:s1'('something')
}
}
}
}
}