C语言通过gSoap调用天气预报的Webservice发布的服务(未实现动态调用,手动输入调用)

Posted 江州益彤

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言通过gSoap调用天气预报的Webservice发布的服务(未实现动态调用,手动输入调用)相关的知识,希望对你有一定的参考价值。

一、下载gSoap工具

将gsoap_2.8.100.zip解压,进入gsoap_2.8.100\\gsoap-2.8\\gsoap\\bin\\win32目录下,或win64目录下。

二、浏览器地址栏输入天气预报的webservice服务地址:http://ws.webxml.com.cn/WebServices/WeatherWS.asmx?wsdl


选择“另存为”到win32目录下,直接把文件名后缀改成.wsdl,如下:

三、创建wsmap.dat支持中文

在win32目录下新建一个文件”wsmap.dat“,文件内容为xsd__string = | std::wstring | wchar_t*;那么SOAP/XML中的string将转换成std::wstrin或wchar_t*,这样能更好地支持中文。

四、生成WeatherWS.h头文件

在该目录下打开cmd窗口,输入以下命令。回车后生成WeatherWS.h头文件
wsdl2h -s -t wsmap.dat WeatherWS.wsdl

-o 文件名,指定输出头文件
-n 名空间前缀 代替默认的ns
-c 产生纯C代码,否则是C++代码
-s 不要使用STL代码
-t 文件名,指定typemap文件,默认为typemap.dat
-e 禁止为enum成员加上名空间前缀

五、解析WeatherWS.h,生成存根程序

在该目录下打开cmd窗口,输入以下命令。

soapcpp2 -i -C -x -L WeatherWS.h -I C:\\Users\\Administrator\\Desktop\\gsoap_2.8.117\\gsoap-2.8\\gsoap\\import

C:\\Users\\Administrator\\Desktop\\gsoap_2.8.117\\gsoap-2.8\\gsoap\\import是我自己的文件目录,参考者自行修改

运行上面命令,将生成下面六个文件

-C 仅生成客户端代码
-S 仅生成服务器端代码
-L 不要产生soapClientLib.c和soapServerLib.c文件
-c 产生纯C代码,否则是C++代码(与头文件有关)
-I 指定import路径(此项是必要的,因前面为指定-s)
-x 不要产生XML示例文件
-i生成C++包装,客户端为xxxxProxy.h(.cpp),服务器端为xxxxService.h(.cpp)。

六、打开Visual Studio 2017,在里面新建一个空项目。

我在这里命名为“TestWebservice”。

其中的stdsoap2.h和stdsoap2.cpp在gsoap_2.8.100\\gsoap-2.8\\gsoap目录下,MainTest.cpp是自己新建的测试类,名字任意。

七、创建测试类

MainTest.cpp内容如下:

#include <stdio.h>
#include <stdlib.h>
#include <fstream>
#include < string >
#include <iostream>

#include <iostream>
//包含soap头文件
#include "soapH.h"
#include "soapStub.h"
#include "WeatherWSSoap.nsmap"
#include "soapWeatherWSSoapProxy.h"

using namespace std;

void main(int argc, char **argv)

	//WebService的请求地址
	const char* web_url = "http://ws.webxml.com.cn/WebServices/WeatherWS.asmx";

	//soap接口
	WeatherWSSoapProxy soap(SOAP_C_UTFSTRING);

	//构造输入参数
	_ns1__getWeather city_name;
	city_name.theCityCode = L"深圳";
	city_name.theUserID = L"";

	//输出参数
	_ns1__getWeatherResponse weather_res;
	//调用接口方法getWeather 
	int xlt = soap.getWeather(web_url, NULL, &city_name, weather_res);
	//判断接口返回值, SOAPOK表示成功
	if (xlt == SOAP_OK)
	
		// 获取返回结果
		ns1__ArrayOfString* aos = weather_res.getWeatherResult;

		// 打印返回结果
		int count = aos->__sizestring;
		for (int i = 0; i < count; i++)
		
			std::wstring a = (aos->string)[i];
			wcout.imbue(locale("chs"));
			wcout << a.c_str() << endl;
		
	

	getchar();

八、解决报错


右击项目“属性”->c/c+±>语言->符合模式,改成否。如下图:

九、运行打印结果:

以上是关于C语言通过gSoap调用天气预报的Webservice发布的服务(未实现动态调用,手动输入调用)的主要内容,如果未能解决你的问题,请参考以下文章

C语言通过gSoap调用自定义的Webservice发布的服务(未实现动态调用,手动输入调用)

gsoap 在我每第二次调用时都会对我的应用程序(用 C 编写)进行段错误

使用 gSOAP 进行 VS 2003/C++ 访问具有 WS-Security 的 SOAP Web 服务?

gSoap 中文传输

gSOAP - 到 C 结构的 XML 数据(也由 gSOAP 生成)

如何在C/C++中调用Java