1. 首先要安装SoapToolkit3.0安装包并安装(我的安装目录为:C:\Program Files\Common Files)
2. 新建vc控制台程序(空项目),项目名称:WinConsole6InvokeWebService,添加一个c++源文件(main.cpp)
3。main.cpp源代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | #include <stdio.h> #include <iostream> #include <vector> #import "msxml4.dll" using namespace std; using namespace MSXML2; #import "C:\Program Files\Common Files\MSSoap\Binaries\MSSOAP30.dll" \ exclude( "IStream" , "IErrorInfo" , "ISequentialStream" , "_LARGE_INTEGER" , \ "_ULARGE_INTEGER" , "tagSTATSTG" , "_FILETIME" ) using namespace MSSOAPLib30; void query( char * EndPointURL, char * Namespace, char * method, vector<string>& v) { ISoapSerializerPtr Serializer; ISoapReaderPtr Reader; ISoapConnectorPtr Connector; // Connect to the service Connector.CreateInstance(__uuidof(HttpConnector30)); Connector->Property[ "EndPointURL" ] = EndPointURL; // 接口位置 Connector->Connect(); // 和服务器连接 // Begin message Connector->Property[ "SoapAction" ] = _bstr_t(Namespace) + _bstr_t(method); Connector->BeginMessage(); Serializer.CreateInstance(__uuidof(SoapSerializer30)); // 将serializer连接到connector的输入字符串 Serializer->Init(_variant_t((IUnknown*)Connector->InputStream)); // 创建SOAP消息 Serializer->StartEnvelope( "soap" , "" , "" ); Serializer->StartBody( "body" ); Serializer->StartElement(method, Namespace, "" , "" ); // 命名空间必须有 for (vector<string>::iterator it = v.begin(); it != v.end(); it++) { Serializer->StartElement( "username" , Namespace, "" , "" ); Serializer->WriteString(it->c_str()); Serializer->EndElement(); } Serializer->EndElement(); Serializer->EndBody(); Serializer->EndEnvelope(); Connector->EndMessage(); // Send the message to the web service // 读取响应 Reader.CreateInstance(__uuidof(SoapReader30)); Reader->Load(_variant_t((IUnknown*)Connector->OutputStream), "" ); printf ( "Answer: %s\n" , ( const char *)Reader->RpcResult->text); // Reader->RpcResult->Gettext()等效 } int main( int argc, char * argv[]) { CoInitialize(NULL); char * EndPointURL = "http://192.168.0.100/WebService1/Service.asmx" ; char * Namespace = "http://tempuri.org/" ; vector<string> v1, v2; v2.push_back( "JoeBlack" ); query(EndPointURL, Namespace, "Hello" , v2); CoUninitialize(); getchar (); return 0; } |
3>通过vs2010发布服务, 添加webservices,文件名Service.asmx,不能通过wcf发布,否则上面的代码回报错。
Service.asmx文件源码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | using System; using System.Web; using System.Web.Services; using System.Web.Services.Protocols; [WebService(Namespace = "http://tempuri.org/" )] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] public class Service : System.Web.Services.WebService { public Service () { //如果使用设计的组件,请取消注释以下行 //InitializeComponent(); } [WebMethod(Description = "Let's say \"Hi\"" )] public string Hi() { return "Hello World, Happy New Year!" ; } [WebMethod(Description = "Hello JoeBlack" )] public string Hello( string username) { return username + ", Happy New Year!" ; } [WebMethod(Description = "求和的方法" )] public double addition( double i, double j) { return i + j; } [WebMethod(Description = "求差的方法" )] public double subtract( double i, double j) { return i - j; } [WebMethod(Description = "求积的方法" )] public double multiply( double i, double j) { return i * j; } [WebMethod(Description = "求商的方法" )] public double division( double i, double j) { if (j != 0) return i / j; else return 0; } } |
程序员的基础教程:菜鸟程序员
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 25岁的心里话
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现