我在DSS中编写了一个查询:
select ID,Name,Age,Address from person where ID in (?)
现在,当我在Soap UI实用程序中访问上面创建的服务时,我将请求传递为:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:person="http://tempuri.org">
<soapenv:Header/>
<soapenv:Body>
<person:GetPersonData>
<person:ID>select distinct ID from person</person:ID>
</person:GetPersonData>
</soapenv:Body>
</soapenv:Envelope>
现在请求我传递查询,但上面的请求没有给我任何回复,但是当我执行上述查询时,即
select ID,Name,Age,Address from person where ID in (select distinct ID from person)
在MYSQL的查询浏览器中我得到了响应。 所以我的问题是如何在服务的输入参数中传递查询。 期待您的回答。提前致谢
答案 0 :(得分:0)
请参考[1}处的样本。它演示了您的具体情况。
[1]。http://wso2.com/project/data-services/2.6.2/docs/samples/rdbms_sample.html
谢谢你, Dharshana。