如何使用 SOAPUI 输入数组?
How can I input array using SOAPUI?
以下是 customerNames 的 WSDL 格式。
<xsd:element name="CustomersNames" minOccurs="0" maxOccurs="unbounded" type="xsd:string"/>
请告知如何使用 SOAPUI 传递输入以测试 soap 请求。
<CustomersNames>--inpuhere--</CustomersNames>
尝试像下面这样传递客户名称。
<CustomersNames>Andrew</CustomersNames>
<CustomersNames>Mohan</CustomersNames>
试试这个
<!--Zero or more repetitions:-->
<arg0>5401</arg0>
<arg0>5401</arg0>
<!--Zero or more repetitions:-->
<arg1>0904</arg1>
<arg1>0904</arg1>
<!--Zero or more repetitions:-->
<arg2>20150101</arg2>
<arg2>20150101</arg2>
<!--Zero or more repetitions:-->
<arg3>20170101</arg3>
<arg3>20170101</arg3>
我得到这样的数据:
public ArrayList<String> method (List<String> A,
List<String> B,
List<String> C,
List<String> D) {
对我有用!
以下是 customerNames 的 WSDL 格式。
<xsd:element name="CustomersNames" minOccurs="0" maxOccurs="unbounded" type="xsd:string"/>
请告知如何使用 SOAPUI 传递输入以测试 soap 请求。
<CustomersNames>--inpuhere--</CustomersNames>
尝试像下面这样传递客户名称。
<CustomersNames>Andrew</CustomersNames>
<CustomersNames>Mohan</CustomersNames>
试试这个
<!--Zero or more repetitions:-->
<arg0>5401</arg0>
<arg0>5401</arg0>
<!--Zero or more repetitions:-->
<arg1>0904</arg1>
<arg1>0904</arg1>
<!--Zero or more repetitions:-->
<arg2>20150101</arg2>
<arg2>20150101</arg2>
<!--Zero or more repetitions:-->
<arg3>20170101</arg3>
<arg3>20170101</arg3>
我得到这样的数据:
public ArrayList<String> method (List<String> A,
List<String> B,
List<String> C,
List<String> D) {
对我有用!