Linux
cd /root/huypv
vim soap-request.xml
(Don't know how to create soap request content: try use SoapUI)
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetWeather xmlns="http://www.webserviceX.NET">
<CityName>Milan</CityName>
<CountryName>Italy</CountryName>
</GetWeather>
</soap:Body>
</soap:Envelope>
curl -H "Content-Type: text/xml; charset=utf-8" -H "SOAPAction:http://www.webserviceX.NET/GetWeather" -d@soap-request.xml
http://www.webservicex.net/globalweather.asmx > output.xml
cat output.xml