i would to create script for sending and getting special response from server, i have xml file for sending which contain numbers of IDs i want to send it to server and getting special response from the server like
<Msg>No Record Found</Msg>
or
<Msg>Record Found</Msg>
now I'm using curl like this:
curl -H "Content-Type: text/xml; charset=utf-8" -d @myreq.xml "http://www.example.com/eService.asmx"
now in myreq.xml file contain something like this
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<oma xmlns="http://tempuri.org/">
<id>303711</id>
</oma>
</soap:Body>
</soap:Envelope>
in id i want to use sequence number start from ( 000001 - 400000 )
and run it to sending to the server
means i would like to send many request and getting the response