在用java </integer>编写的Web服务方法中传递List <integer>

时间:2013-06-07 06:20:21

标签: web-services soapui

我在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服务。

1 个答案:

答案 0 :(得分:0)

您的方法需要List integers作为输入并返回List ReflexFundInfo,如果这是您的意图,那么您做得正确。