1. 环境
    VS2008,gsoap_2.8,win7
  2. 实例场景:在客户端输入一个字符串,然后传递给服务端计算字符串长度并返回给客户端(附加一些加减乘除法的实现);
  3. 将..\gsoap-2.8\gsoap\bin\win32中的两个exe文件所在路径加入环境变量中,后面有用;
  4. 新建一个文件夹,设计一个calculator.h文件,如下(前面几行的注释我也不知道有啥用)
     //gsoap ns service name: add
    //gsoap ns service namespace: http://localhost/add.wsdl
    //gsoap ns service location: http://localhost
    //gsoap ns service executable: add.cgi
    //gsoap ns service encoding: encoded
    //gsoap ns schema namespace: urn:add
    int ns__add(int num1, int num2, int* result );
    int ns__sub(int num1, int num2, int* result );
    int ns__mult( int num1, int num2, int *result);
    int ns__divid( int num1, int num2, int *result);
    int ns__Hello(char* str,int *len);
  5. 在该文件夹中打开cmd(方法ctrl+右键 --》在此处打开命令窗口),输入命令:soapcpp2.exe calculator.h
    有关gsoap的命令用法自行百度;
  6. 你会发现生成很多很多文件
  7. 利用VS2008创建一个calServer的工程,将calculator.h  add.nsmap soapC.cpp soapServer.cpp soapH.h soapStub.h放入该工程,并且将gsoap-2.8\gsoap下的stdsoap2.h stdsoap2.cpp也添加到该工程;添加完后,在项目属性中的链接器--输入--附加依赖项 中输入wsock32.lib;
  8. 在calServer中添加一个main.cpp,代码如下:
     #include "soapH.h"
    #include "add.nsmap"
    #include "stdio.h"
    #include <iostream>
    using namespace std; int main( int argc, char *argv[])
    {
    struct soap *CalculateSoap = soap_new(); //创建一个soap
    int iSocket_master = soap_bind(CalculateSoap, NULL, , ); //绑定到相应的IP地址和端口()NULL指本机,
    //10000为端口号,最后一个参数不重要。
    if (iSocket_master< ) //绑定出错
    {
    soap_print_fault(CalculateSoap, stderr);
    exit(-);
    }
    printf("SoapBind success,the master socket number is:%d\n",iSocket_master); //绑定成功返回监听套接字 while()
    {
    int iSocket_slaver = soap_accept(CalculateSoap);
    if (iSocket_slaver < )
    {
    soap_print_fault(CalculateSoap, stderr);
    exit(-);
    }
    printf("Get a new connection,the slaver socket number is:%d\n",iSocket_slaver); //绑定成功返回监听套接字
    soap_serve(CalculateSoap);
    soap_end(CalculateSoap);
    }
    soap_done(CalculateSoap);
    free(CalculateSoap); return ;
    } /*加法的具体实现*/
    int ns__add(struct soap *soap, int num1, int num2, int* result )
    {
    if (NULL == result)
    {
    printf("Error:The third argument should not be NULL!\n");
    return SOAP_ERR;
    }
    else
    {
    (*result) = num1 + num2;
    return SOAP_OK;
    }
    return SOAP_OK;
    } /*减法的具体实现*/
    int ns__sub(struct soap *soap,int num1, int num2, int* result )
    {
    if (NULL == result)
    {
    printf("Error:The third argument should not be NULL!\n");
    return SOAP_ERR;
    }
    else
    {
    (*result) = num1 - num2;
    return SOAP_OK;
    }
    return SOAP_OK;
    } /*乘法的具体实现*/
    int ns__mult(struct soap *soap, int num1, int num2, int *result)
    {
    if (NULL == result)
    {
    printf("Error:The third argument should not be NULL!\n");
    return SOAP_ERR;
    }
    else
    {
    (*result) = num1 * num2;
    return SOAP_OK;
    }
    return SOAP_OK;
    } /*除法的具体实现*/
    int ns__divid(struct soap *soap, int num1, int num2, int *result)
    {
    if (NULL == result || == num2)
    {
    printf("Error:The second argument is 0 or The third argument is NULL!\n");
    return SOAP_ERR;
    }
    else
    {
    (*result) = num1 / num2;
    return SOAP_OK;
    }
    return SOAP_OK;
    } int ns__Hello(struct soap *soap, char *str, int *len)
    {
    /*if (NULL == result)
    {
    printf("Error:The third argument should not be NULL!\n");
    return SOAP_ERR;
    }
    else
    {
    cout << result <<endl;
    return SOAP_OK;
    }*/
    //if (NULL == result)
    cout << str <<endl;
    (*len) = strlen(str);
    return SOAP_OK; }
  9. Server端完成,可以运行了。
  10. 客户端:利用VS2008创建一个calClient的工程,将calculator.h  add.nsmap soapC.cpp soapClient.cpp soapH.h soapStub.h放入该工程,并且将gsoap-2.8\gsoap下的stdsoap2.h stdsoap2.cpp也添加到该工程;添加完后,在项目属性中的链接器--输入--附加依赖项 中输入wsock32.lib;
  11. 在calClient中添加一个main.cpp,代码如下:
     #include "soapH.h"
    #include "add.nsmap"
    #include "stdio.h"
    #include <iostream>
    using namespace std; int main( int argc, char *argv[])
    {
    printf("The Client is runing...\n");
    int num1 = ;
    int num2 = ;
    int result = ; struct soap *CalculateSoap = soap_new();
    //soap_init(CalculateSoap);
    注意改你的ip,端口10000不改
    char * server_addr = "http://xx.x.x.x:10000"; int iRet = soap_call_ns__add(CalculateSoap,server_addr,"",num1,num2,&result);
    if ( iRet == SOAP_ERR)
    {
    printf("Error while calling the soap_call_ns__add");
    }
    else
    {
    printf("Calling the soap_call_ns__add success。\n");
    printf("%d + %d = %d\n",num1,num2,result);
    } iRet = soap_call_ns__sub(CalculateSoap,server_addr,"",num1,num2,&result);
    if ( iRet == SOAP_ERR)
    {
    printf("Error while calling the soap_call_ns__sub");
    }
    else
    {
    printf("Calling the soap_call_ns__sub success。\n");
    printf("%d - %d = %d\n",num1,num2,result);
    } iRet = soap_call_ns__mult(CalculateSoap,server_addr,"",num1,num2,&result);
    if ( iRet == SOAP_ERR)
    {
    printf("Error while calling the soap_call_ns__mult");
    }
    else
    {
    printf("Calling the soap_call_ns__mult success。\n");
    printf("%d * %d = %d\n",num1,num2,result);
    } iRet = soap_call_ns__divid(CalculateSoap,server_addr,"",num1,num2,&result);
    if ( iRet == SOAP_ERR)
    {
    printf("Error while calling the soap_call_ns__divid");
    }
    else
    {
    printf("Calling the soap_call_ns__divid success。\n");
    printf("%d / %d = %d\n",num1,num2,result);
    }
    char *str = new char[];
    cin.getline(str,);
    cout << str <<endl;
    int len;
    iRet = soap_call_ns__Hello(CalculateSoap,server_addr,"",str,&len);
    if ( iRet == SOAP_ERR)
    {
    printf("Error while calling the soap_call_ns__add");
    }
    else
    {
    cout << str << " length is " << len <<" success!\n";
    } soap_end(CalculateSoap);
    soap_done(CalculateSoap);
    free(CalculateSoap); return ;
    }
  12. Client端完成,可以先运行Server,在运行Client看看效果。
    注意:客户端和服务端可以再两台电脑上允许并访问。

gsoap入门实例的更多相关文章

  1. React 入门实例教程(转载)

    本人转载自: React 入门实例教程

  2. struts入门实例

    入门实例 1  .下载struts-2.3.16.3-all  .不摆了.看哈就会下载了. 2  . 解压  后 找到 apps 文件夹. 3.    打开后将 struts2-blank.war   ...

  3. Vue.js2.0从入门到放弃---入门实例

    最近,vue.js越来越火.在这样的大浪潮下,我也开始进入vue的学习行列中,在网上也搜了很多教程,按着教程来做,也总会出现这样那样的问题(坑啊,由于网上那些教程都是Vue.js 1.x版本的,现在用 ...

  4. wxPython中文教程入门实例

    这篇文章主要为大家分享下python编程中有关wxPython的中文教程,分享一些wxPython入门实例,有需要的朋友参考下     wxPython中文教程入门实例 wx.Window 是一个基类 ...

  5. Omnet++ 4.0 入门实例教程

    http://blog.sina.com.cn/s/blog_8a2bb17d01018npf.html 在网上找到的一个讲解omnet++的实例, 是4.0下面实现的. 我在4.2上试了试,可以用. ...

  6. Spring中IoC的入门实例

    Spring中IoC的入门实例 Spring的模块化是很强的,各个功能模块都是独立的,我们可以选择的使用.这一章先从Spring的IoC开始.所谓IoC就是一个用XML来定义生成对象的模式,我们看看如 ...

  7. Node.js入门实例程序

    在使用Node.js创建实际“Hello, World!”应用程序之前,让我们看看Node.js的应用程序的部分.Node.js应用程序由以下三个重要组成部分: 导入需要模块: 我们使用require ...

  8. Java AIO 入门实例(转)

    Java7 AIO入门实例,首先是服务端实现: 服务端代码 SimpleServer: public class SimpleServer { public SimpleServer(int port ...

  9. Akka入门实例

    Akka入门实例 Akka 是一个用 Scala 编写的库,用于简化编写容错的.高可伸缩性的 Java 和 Scala 的 Actor 模型应用. Actor模型并非什么新鲜事物,它由Carl Hew ...

随机推荐

  1. 性能压测诡异的Requests/second 响应刺尖问题

    最近一段时间都在忙着转java项目最后的冲刺,前期的coding翻代码.debug.fixbug都逐渐收尾,进入上线前的性能压测. 虽然不是大促前的性能压测要求,但是为了安全起见,需要摸个底心里有个数 ...

  2. XCode消除警告、错误

    1.集成支付宝SDK后,报一堆warning: (arm64) /Users/scmbuild/workspace/standard-pay/.....警告 解决方法: 1)  Go to Build ...

  3. taobao_api项目开坑,自主完成淘宝主要接口的开发-版本:卖家版(非淘宝api)

    项目名称:taobao_api 项目目的:独立实现各个淘宝操作的相关api,不依赖淘宝提供的api,而是自己实现接口 前期实现接口:已付款订单查询(自动更新), 订单发货 , 订单备注 应用场景:中小 ...

  4. JavaScript简易计算器

    JavaScript一种直译式脚本语言,是一种动态类型.弱类型.基于原型的语言,内置支持类型.它的解释器被称为JavaScript引擎,为浏览器的一部分,广泛用于客户端的脚本语言,最早是在HTML(标 ...

  5. php中常用的字符串查找函数strstr()、strpos()实例解释

    string strstr ( string $haystack , mixed $needle [, bool $before_needle = false ] ) 1.$haystack被查找的字 ...

  6. 技术领导(Technical Leader)画像

    程序员都讨厌被管理,而乐于被领导.管理的角色由PM(project manager)扮演,具体来说,PM负责提需求.改改改.大多数情况,PM是不懂技术的,这也是程序员觉得PM难以沟通的原因.而后者由技 ...

  7. vuejs2+axios设置

    http://www.cnblogs.com/wisewrong/p/6402183.html 1 当前项目安装axios $ cnpm i axios --save-dev 2 import axi ...

  8. 扩展javascript扩展(类,对象,原型)

     扩展javascript扩展(类,对象,原型)

  9. webpack 的使用1

    进入指定文件夹  npm init 安装 npm install webapck --save-dev 根目录下新建hello.js 将文件打包到指定文件  Asset :打包成的文件名称 Chunk ...

  10. iOS开发之AutoLayout中的Content Hugging Priority和 Content Compression Resistance Priority解析

    本篇博客的内容也不算太复杂,算是AutoLayout的一些高级的用法.本篇博客我们主要通过一些示例来看一下AutoLayout中的Content Hugging Priority以及Content C ...