Search code examples
soapsoapuisoap-client

How can I input array using SOAPUI?


Below is the WSDL format for customerNames.

<xsd:element name="CustomersNames" minOccurs="0" maxOccurs="unbounded" type="xsd:string"/>

Please Advice that how can i pass input to test soap request using SOAPUI.

<CustomersNames>--inpuhere--</CustomersNames>

Solution

  • Try to pass Customer name like below.

    <CustomersNames>Andrew</CustomersNames>
    <CustomersNames>Mohan</CustomersNames>