Passing multiple parameters in a single SOAP request
Hi All,
Please help me in the below query.
<soapenv:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns0="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://soa.comptel.com/2011/02/instantlink" xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header>
<wsa:ReplyTo>
<wsa:Address>http://10.113.242.34:9001/middleware/ResponseHandler?wsdl</wsa:Address>
</wsa:ReplyTo>
</soapenv:Header>
<soapenv:Body>
<ns1:CreateRequest>
<ns1:RequestHeader>
<ns1:NeType>Order</ns1:NeType>
<ns1:OrderNo>11264068022700</ns1:OrderNo>
</ns1:RequestHeader>
<ns1:RequestParameters>
<ns1:Parameter name="SO1_ACTION" value="Create"/>
<ns1:Parameter name="SO1_DOMAIN_NAME" value="7013"/>
<ns1:Parameter name="SO1_PART_NUMBER" value="CFS_Domain"/>
<ns1:Parameter orderParam="false" name="SO1_SUBSCRIBER_TYPE" value="POSTPAID"/>
</ns1:RequestParameters>
</ns1:CreateRequest>
</soapenv:Body>
</soapenv:Envelope>
This is the soap request which I am using.
So in the request I am passing only one "<ns1:Parameter name="SO1_DOMAIN_NAME" value="7013"/>"
I want to pass multiple(for example: 0001,0002 till 0999) in a single request.
Can someone please help me in the request like how to add multiple parameters.
I am using SOAP UI2.5 version.
Thanks in Advance.