有一个dll webservice(由Delphi制作),它有一个名为 List 的方法,它返回一个字符串列表(widestring)。
是否有任何方法可以调用该服务而无需编写客户端应用程序来使用它?
答案 0 :(得分:9)
Chrome应用Postman可以发送SOAP请求。您只需提供Web服务URL,选择POST,设置正确的内容类型标题(text / xml,application / soap + xml等),并在请求中提供正确的xml soap主体。单击“发送”。
以下是发布到free weather web service的示例请求。
答案 1 :(得分:-2)
您的请求可能是:
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
响应将是:
<?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>