如果你使用这个帖子的XML版本是有效的,但是撕掉我的头发试图找出内联版本没有的原因。它几乎不是一个复杂的功能!!
import wslite.soap.SOAPClient
import wslite.soap.*
import groovy.xml.Namespace
proxy = new SOAPClient("http://www.predic8.com:8080/crm/CustomerService?wsdl")
/*
// THIS WORKS
list = proxy.send(
'''<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"xmlns:ns="http://predic8.com/wsdl/crm/CRMService/1/">
<soapenv:Header/>
<soapenv:Body>
<ns:get>
<id>99</id>
</ns:get>
</soapenv:Body>
</soapenv:Envelope>'''
)
*/
//return list.getText()
//THIS DOES NOT
list = proxy.send(SOAPAction:'http://www.predic8.com:8080/crm/CustomerService'){
body{
get(xmlns:ns="http://predic8.com/wsdl/crm/CRMService/1/"){
id(99)
}
} //end body
} //end proxy
return list.getText()
任何人都能理解为什么?
答案 0 :(得分:2)
属性应该作为Map传递,因此对代码的以下更改应该有效。
...
'ns:get'('xmlns:ns': "http://predic8.com/wsdl/crm/CRMService/1/"){
...
或
...
get('xmlns': "http://predic8.com/wsdl/crm/CRMService/1/"){
...