Żądanie może być coś takiego:
POST /WeatherWS/Weather.asmx/GetCityWeatherByZIP HTTP/1.1
Host: wsf.cdyne.com
Cache-Control: no-cache
Postman-Token: e5bc46a4-71ac-f357-78a7-c4b4de894afb
Content-Type: application/x-www-form-urlencoded
ZIP=90210
a odpowiedź będzie:
<?xml version="1.0" encoding="utf-8"?>
<WeatherReturn xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://ws.cdyne.com/WeatherWS/">
<Success>true</Success>
<ResponseText>City Found</ResponseText>
<State>CA</State>
<City>Beverly Hills</City>
<WeatherStationCity>Van Nuys</WeatherStationCity>
<WeatherID>4</WeatherID>
<Description>Sunny</Description>
<Temperature>68</Temperature>
<RelativeHumidity>54</RelativeHumidity>
<Wind>CALM</Wind>
<Pressure>29.89R</Pressure>
<Visibility />
<WindChill />
<Remarks />
</WeatherReturn>
Nie rozumiem pytanie. Chcesz wywołać metody ws bez pisania aplikacji klienckiej? Nie możesz tego zrobić, używając przeglądarki, a może nawet zwijając? – Birger
Spójrz na tym stanowisku http://stackoverflow.com/questions/578306/simple-free-soap-client-for-testing-web-services – AlexSC
należy skorzystać z aplikacji, np UI lub ekwiwalentów SOAP. – whosrdaddy