一、 gSOAP访问WebService
gSOAP 2.7.17 版下载地址http://sourceforge.net/projects/gsoap2/)
解压下载的gsoap_2.7.17.zip,假设该路径为F:\WebService\gsoap-2.7
在 F:\WebService\gsoap-2.7\gsoap\bin\win32目录下建一个空的头文件WebService.h;再建立一个字符转换规则文件wsmap.dat,文件内容为xsd__string = | std::wstring | wchar_t*
那么SOAP/XML中的string将转换成std::wstrin或wchar_t*,这样能更好地支持中文。
启动cmd,进入到F:\WebService\gsoap-2.7\gsoap\bin\win32目录,调用wsdl2h.exe生成头文件接口定义,命令为:
wsdl2h -o WebService.h -n WS -t wsmap.dat http://webservice.webxml.com.cn/WebServices/WeatherWS.asmx?WSDL
在命令行输入soapcpp2 -C WebService.h -I F:\WebService\gsoap-2.7\gsoap\import
最后提示成功,在F:\WebService\gsoap-2.7\gsoap\bin\win32目录中生成系列文件如下:
将生成的soapC.cpp、soapClient.cpp、soapH.h、soapStub.h、soapWeatherWSSoapProxy.h、WeatherWSSoap.nsmap、stdsoap2.h和stdsoap2.cpp文件加入到工程
在工程的头文件中加入#include “WeatherWSSoap.nsmap”,否则会有命名空间编译出错的问题
#include <iostream>
#include <string>
// 名称空间映射表
#include "WeatherWSSoap.nsmap"
#include "soapWeatherWSSoapProxy.h"
using namespace std;
main函数:
// // 代理类对象
WeatherWSSoap weatherwebservice;
// 获取近5天天气情况及城市信息
_ns1__getWeather cityName;
_ns1__getWeatherResponse weatherResponse;
cityName.theCityCode = L"北京";
int result = weatherwebservice.__ns2__getWeather(&cityName, &weatherResponse);
if(SOAP_OK == result)
{
vector<wstring> weatherString = weatherResponse.getWeatherResult->string;
vector<wstring>::iterator itr;
vector<wstring>::iterator itr_end;
cout<<"近5天天气情况及城市信息:"<<endl;
for(itr = weatherString.begin(),itr_end = weatherString.end(); itr!=itr_end; ++itr)
{
wcout<<*itr<<endl;
}
cout<<endl;
}
在Visual Studio 2008以及以后版本中,微软停止了非托管C++的直接WebService引用。不过ATL Server代码已经托管到开源网站上,我们可以找到ATL Server的源代码,编译出Sproxy.exe,这个工具可以根据wsdl文件来生成非托管的代理类。这个代理类还需要配合一些头文件才能一起使用,这个相关的头文件都包含在ATL Server 的源代码内。
在vs2008以前的版本,比如vs2005,本身就带有这个命令,但在vs2008版,已经把它给去除了。需要去http://atlserver.codeplex.com/下载ATL_Server源代码并编译产生sproxy.exe工具。
启动cmd,进入sproxy.exe目录,执行sproxy.exe / wsdl http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl
生成WeatherWebService.h文件
#include "iostream"
#include "WeatherWebService.h"
using namespace std;
// 设置中文区域
setlocale(LC_ALL,"chs");
CoInitialize(NULL);
HRESULT hr = S_OK;
WeatherWebService::CWeatherWebServiceT<CSoapSocketClientT<>>* mWeatherWS = new WeatherWebService::CWeatherWebServiceT<CSoapSocketClientT<>>;
CComBSTR cityName = "北京";
BSTR* weatherOut;
int weatherSize;
// 获取天气
hr = mWeatherWS->getWeatherbyCityName(cityName,(BSTR**)&weatherOut,&weatherSize);
if(FAILED(hr))
{
cout<<"getWeather fail!"<<endl;
}
else
{
for (int i=0;i<weatherSize;i++)
{
wcout<<weatherOut[i]<<endl;
}
}
if (mWeatherWS != NULL)
delete mWeatherWS;
CoUninitialize();