0

我用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 Tool 测试网络服务。

4

1 回答 1

0

您的方法将Listofintegers作为输入并返回Listof ReflexFundInfo,如果这是您的意图,那么您做对了。

于 2013-06-07T06:58:40.937 回答