我在java中编写过webservices。
public List<ReflexFundInfo> method(List<Integer> Ids ) {
List<Object> list = new ArrayList<Object>();
//added few elements on that array
return list;
}
只是想检查这是将LIST传递给方法的正确方法吗?如果我将检查我得到的SOAP消息:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dmo="http://com.test.org" xmlns:dfow="http://localhost:7011/LMX_WEB/services/WebServiceTest">
<soapenv:Header/>
<soapenv:Body>
<dmo:method>
<dmo:Ids>
</dmo:Ids>
</dmo:method>
</soapenv:Body>
</soapenv:Envelope>
基本上我正在使用SOAPUI工具测试web服务。
答案 0 :(得分:0)
您的方法需要List
integers
作为输入并返回List
ReflexFundInfo
,如果这是您的意图,那么您做得正确。