Delphi 编写调用WebService接口的小程序
最近由于项目需要在编写一个webservice的客户端,网上找来了不少资料,都说可以通过delphi自带的向导来生成调用接口的文件。
如对天气预报的webservice调用http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl ,查看各地的天气预报
1、打开delphi开发软件到 File--> New--> Application 新建一个工程,在窗体上放置两个 Button按钮,一个ComboBox,一个Edit
一个Memo和一个HTTPRIO1
2、到File--> New--> Other--> WebServices--> WSDL importer
用WSDL Import Wizard 窗口,在Location of WSDL File or URL中填写天气预报的wsdl路径http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl 后点击Next按钮,再点击finish按钮,这样delphi就自动把接口描述的xml文档生成了可以调用的单元文件WeatherWebService.pas如下
// ************************************************************************ //
// The types declared in this file were generated from data read from the
// WSDL File described below:
// WSDL : http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl
// Encoding : utf-8
// Version : 1.0
// (2012-9-13 9:58:02 - 1.33.2.5)
// ************************************************************************ //
unit WeatherWebService;
interface
uses InvokeRegistry, SOAPHTTPClient, Types, XSBuiltIns;
type
//