C/C++调用WebService需要用到soap库,一般使用的有gsoap和axis cpp两种实现,这里使用gsoap来调用。gsoap可以在 linxu、windows、mac多种平台上使用。
gsoap的主页地址是http://gsoap2.sourceforge.net/
新建一个WebService:
//写一个简单的方法
[WebMethod(Description="返回字符串")]
public string HelloWorld(string str)
{
return "The Value Is " + str;
}
gsoap使用步骤:
1、解压gsoap 在Windows下使用解压下的\gsoap-2.8\gsoap\bin\win32下的wsdl2h.exe和soapcpp2.exe工具。
2、用wsdl2h根据webservice生成.h文件,wsdl2h [opt] 头文件名 WSDL文件名或URL
wsdl2h常用选项:
-o 文件名,指定输出头文件
-n 名空间前缀 代替默认的ns
-c 产生纯C代码,否则是C++代码
-s 不要使用STL代码
-t 文件名,指定type map文件,默认为typemap.dat
-e 禁止为enum成员加上名空间前缀 type map文件用于指定
3、利用wsdl2h.exe生成.h文件
生成成功后会多出一个UserInfo.h文件
4、利用soapcpp2.exe生成代理函数
生成的前提:把gsoap\import目录下的文件拷贝一份放在soapcpp2.exe的同一个目录,否则生成不成功
5、生成后会多出很多文件(纯C代码文件)
第三步,就是在vc中建个工程,设置如下:
1、新建一个C++项目
2、在gsoap目录下拷贝stdsoap2.c、stdsoap2.h到新建的C++项目文件下,再把gsoap\bin\win32目录生成好的soapC.c、soapClient.c、soapH.h、soapStub.h、targetver.h、UserInfoSoap.nsmap拷贝到新建的C++项目文件下
3、新建好C++工程后,添加所有拷贝到新建的C++项目文件下的所有文件
4、新建一个主入口的c文件,尅把自动生成的cpp main文件删除,然后写入代码
#include<stdio.h>
#include"UserInfoSoap.nsmap"
#include"soapStub.h"
int main()
{
int iRet;
struct soap userinfoSoap;
struct _ns1__HelloWorld helloWorld;
struct _ns1__HelloWorldResponse helloWorldResponse;
const char *pcAddr="http://localhost:31749/UserInfo.asmx?WSDL";
helloWorld.str= "LiGengMing";
soap_init(&userinfoSoap);
iRet=soap_call___ns1__HelloWorld(&userinfoSoap,pcAddr,NULL,&helloWorld,&helloWorldResponse);
if(iRet!=0)
{
printf("读取数据失败");
}
else
{
printf("读取数据成功:%s",helloWorldResponse);
}
soap_destroy(&userinfoSoap);
soap_end(&userinfoSoap);
soap_done(&userinfoSoap);
getchar();
return 0;
}
5、注意点:helloWorld.str就是接口方法的传入参数