gsoap应用---利用gsoap工具生成代码

2024-02-27 13:38

本文主要是介绍gsoap应用---利用gsoap工具生成代码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!


1、gsoap是什么?

          The gSOAP toolkit is an open source C and C++ software development toolkit for SOAP/XML Web services and generic (non-SOAP) C/C++ XML data bindings. The toolkit analyzes WSDLs and XML schemas (separately or as a combined set) and maps the XML schema types and the SOAP messaging protocols to easy-to-use and efficient C and C++ code. It also supports exposing (legacy) C and C++ applications as SOAP/XML Web services by auto-generating XML serialization code and WSDL specifications. Or you can simply use it to automatically convert XML to/from C and C++ data. The toolkit supports options to generate pure ANSI C or C++ with or without STL.

        这是gsoap介绍的原文,简单来说,gsoap就是一个工具,这个工具能够做的事情就是自动从WSDL和XML文档生成C/C++代码,或者是逆向。这就是我所理解的gsoap。

记录下:

        gSOAP编译工具提供了一个SOAP/XML 关于C/C++ 语言的实现,从而让C/C++语言开发web服务或客户端程序的工作变得轻松了很多。绝大多数的C++web服务工具包提供一组API函数类库来处理特定的SOAP数据结构,这样就使得用户必须改变程序结构来适应相关的类库。与之相反,gSOAP利用编译器技术提供了一组透明化的SOAP API,并将与开发无关的SOAP实现细节相关的内容对用户隐藏起来。

gSOAP的编译器能够自动的将用户定义的本地化的C或C++数据类型转变为符合XML语法的数据结构,反之亦然。这样,只用一组简单的API就将用户从SOAP细节实现工作中解脱了出来,可以专注与应用程序逻辑的实现工作了。gSOAP编译器可以集成C/C++和Fortran代码(通过一个Fortran到C的接口),嵌入式系统,其他SOAP程序提供的实时软件的资源和信息;可以跨越多个操作系统,语言环境以及在防火墙后的不同组织。
gSOAP使编写web服务的工作最小化了。gSOAP编译器生成SOAP的代码来序列化或反序列化C/C++的数据结构。gSOAP包含一个WSDL生成器,用它来为你的web服务生成web服务的解释。gSOAP的解释器及导入器可以使用户不需要分析web服务的细节就可以实现一个客户端或服务端程序。
2、gsoap使用
gsoap通常带有两个工具: wsdl2h 和 soapcpp2。 wsdl2h主要是用来生成头文件的,而soapcpp2主要是利用wsdl2h生成的头文件来生成C文件或C++文件。
a、wsdl2h的使用
命令:  wsdl2h  【-】  -o  头文件名  wsdl文件名或者url
例    :  wsdl2h  -o  quote.h     http://services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl
Usage: wsdl2h  [-a] [-c] [-d] [-e] [-f] [-g] [-h] [-I path] [-j] [-l] [-m] [-n name] [-N name] [-p] [-q name] [-r proxyhost:port] [-s] [-t typemapfile.dat] [-u]
                                 [-v] [-w] [-x] [-y] [-z] [-o outfile.h] infile.wsdl infile.xsd   http://www... ...
 
     wsdl2h常用选项
            -o 文件名,指定输出头文件
-n 名空间前缀 代替默认的ns
-c 产生纯C代码,否则是C++代码
-s 不要使用STL代码
-t 文件名,指定type map文件,默认为typemap.dat
-e 禁止为enum成员加上名空间前缀

              type map文件用于指定SOAP/XML中的类型与C/C++之间的转换规则,比如在wsmap.dat里写。

       关于typemap.dat,在下载的gsoap中是有另外一个,叫:WS-typemap.dat。 如果有多个wsdl文档,建议使用这个。

 

       wsdl2h针对多个文档: wsdl2h.exe  -sc  -t   WS-typemap.dat   -o   quote.h    a.wsdl  b.wsdl   c.wsdl

   b、soapcpp2的使用

       命令: soapcpp2  【】  头文件名 【-I】 import路径

       例   :  soapcpp2   -L  -c  quote.h   -I  E:\gsoap-2.8\gsoap\import 

       soapcpp2常用选项

            -C  仅生成客户端代码
-S  仅生成客户端代码
-c   产生纯C代码,否则是C++代码
-L   不要产生soapClientLib.c和soapServerLib.c文件
-I    指定import路径
-x  不要产生XML示例文件
            -i   生成C++包装,客户端为xxxxProxy.h(.cpp),服务器端为xxxxService.h(.cpp)。
soapcpp2针对多个文档: soapcpp2  -L -c  quote.h   -I  E:\gsoap-2.8\gsoap\import
其实多个wsdl合并只需要在生成头文件的时候注意就可以了,源文件是通过头文件得到的。
wsdl2h -sc -t WS-typemap.dat -o onvif.h deviceio.wsdl devicemgmt.wsdl imaging.wsdl media.wsdl ptz.wsdl
soapcpp2 -L -c -x onvif.h -I D:\gsoap-2.8\gsoap\import
附:  工具命令
wsdl2h
            Usage: wsdl2h   [-a] [-c] [-d] [-e] [-f] [-g] [-h] [-I path] [-j] [-l] [-m] [-n name] [-N name] [-p] [-q name] [-r proxyhost:port] [-s] [-t typemapfile.dat] [-u]
                                       [-v] [-w] [-x] [-y] [-z] [-o outfile.h] infile.wsdl infile.xsd   http://www... ...
-a                generate indexed struct names for local elements with anonymous types
                        -c                generate C source code
                        -d                use DOM to populate xs:any and xsd:anyType elements
                        -e                don't qualify enum names
                        -f                 generate flat C++ class hierarchy
                        -g                generate global top-level element declarations
                        -h                display help info
                        -Ipath          use path to find files
                        -j                 don't generate SOAP_ENV__Header and SOAP_ENV__Detail definitions
                        -l                 include license information in output
                        -m               use xsd.h module to import primitive types
                        -nname       use name as the base namespace prefix instead of 'ns'
                        -Nname      use name as the base namespace prefix for service namespaces
                        -ofile           output to file
                        -p                create polymorphic types with C++ inheritance with base xsd__anyType
                        -qname       use name for the C++ namespace for all service declarations
                        -rhost:port  /* ??? 暂没理解 */
                                connect via proxy host and port
                        -s                don't generate STL code (no std::string and no std::vector)
                        -tfile            use type map file instead of the default file typemap.dat
                        -u                don't generate unions
                        -v                verbose output
                        -w               always wrap response parameters in a response struct (<=1.1.4 behavior)
                        -x                don't generate _XML any/anyAttribute extensibility elements
                        -y                generate typedef synonyms for structs and enums
                        -z                generate pointer-based arrays for backward compatibility < gSOAP 2.7.6e
infile.wsdl     list of input sources (if none: use stdin)
soapcpp2
             Usage: soapcpp2 [-1|-2] [-C|-S] [-L] [-a] [-c] [-d path] [-e] [-h] [-i] [-I path;path;...] [-l] [-m] [-n] [-p name] [-s] [-t] [-v] [-w] [-x] [infile]
-1            generate SOAP 1.1 bindings
                        -2            generate SOAP 1.2 bindings
                        -C            generate client-side code only
                        -S            generate server-side code only
                        -L            don't generate soapClientLib/soapServerLib
                        -a            use value of SOAPAction HTTP header to dispatch method at server side
                        -c            generate C source code
                        -dpath     use path to save files
                        -e            generate SOAP RPC encoding style bindings
                        -h            display help info
                        -i             generate service proxies and objects inherited from soap struct
                        -Ipath      use path(s) for #import
                        -l             generate linkable modules (experimental)
                        -m           generate Matlab(tm) code for MEX compiler
                        -n            use service name to rename service functions and namespace table
                        -pname   save files with new prefix name instead of 'soap'
                        -s            generate deserialization code with strict XML validation checks
                        -t             generate code for fully xsi:type typed SOAP/XML messaging
                        -v            display version info
                        -w           don't generate WSDL and schema files
                        -x            don't generate sample XML message files
                       infile         header file to parse (or stdin)
参考:
http://blog.sina.com.cn/s/blog_4900f3fb0100j94p.html
http://gsoap2.sourceforge.net/
http://blog.csdn.net/Ocean2006/article/details/5490928

这篇关于gsoap应用---利用gsoap工具生成代码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/752576

相关文章

SpringBoot基于MyBatis-Plus实现Lambda Query查询的示例代码

《SpringBoot基于MyBatis-Plus实现LambdaQuery查询的示例代码》MyBatis-Plus是MyBatis的增强工具,简化了数据库操作,并提高了开发效率,它提供了多种查询方... 目录引言基础环境配置依赖配置(Maven)application.yml 配置表结构设计demo_st

在Ubuntu上部署SpringBoot应用的操作步骤

《在Ubuntu上部署SpringBoot应用的操作步骤》随着云计算和容器化技术的普及,Linux服务器已成为部署Web应用程序的主流平台之一,Java作为一种跨平台的编程语言,具有广泛的应用场景,本... 目录一、部署准备二、安装 Java 环境1. 安装 JDK2. 验证 Java 安装三、安装 mys

Python中构建终端应用界面利器Blessed模块的使用

《Python中构建终端应用界面利器Blessed模块的使用》Blessed库作为一个轻量级且功能强大的解决方案,开始在开发者中赢得口碑,今天,我们就一起来探索一下它是如何让终端UI开发变得轻松而高... 目录一、安装与配置:简单、快速、无障碍二、基本功能:从彩色文本到动态交互1. 显示基本内容2. 创建链

SpringCloud集成AlloyDB的示例代码

《SpringCloud集成AlloyDB的示例代码》AlloyDB是GoogleCloud提供的一种高度可扩展、强性能的关系型数据库服务,它兼容PostgreSQL,并提供了更快的查询性能... 目录1.AlloyDBjavascript是什么?AlloyDB 的工作原理2.搭建测试环境3.代码工程1.

Java调用Python代码的几种方法小结

《Java调用Python代码的几种方法小结》Python语言有丰富的系统管理、数据处理、统计类软件包,因此从java应用中调用Python代码的需求很常见、实用,本文介绍几种方法从java调用Pyt... 目录引言Java core使用ProcessBuilder使用Java脚本引擎总结引言python

Java中ArrayList的8种浅拷贝方式示例代码

《Java中ArrayList的8种浅拷贝方式示例代码》:本文主要介绍Java中ArrayList的8种浅拷贝方式的相关资料,讲解了Java中ArrayList的浅拷贝概念,并详细分享了八种实现浅... 目录引言什么是浅拷贝?ArrayList 浅拷贝的重要性方法一:使用构造函数方法二:使用 addAll(

Python pyinstaller实现图形化打包工具

《Pythonpyinstaller实现图形化打包工具》:本文主要介绍一个使用PythonPYQT5制作的关于pyinstaller打包工具,代替传统的cmd黑窗口模式打包页面,实现更快捷方便的... 目录1.简介2.运行效果3.相关源码1.简介一个使用python PYQT5制作的关于pyinstall

JAVA利用顺序表实现“杨辉三角”的思路及代码示例

《JAVA利用顺序表实现“杨辉三角”的思路及代码示例》杨辉三角形是中国古代数学的杰出研究成果之一,是我国北宋数学家贾宪于1050年首先发现并使用的,:本文主要介绍JAVA利用顺序表实现杨辉三角的思... 目录一:“杨辉三角”题目链接二:题解代码:三:题解思路:总结一:“杨辉三角”题目链接题目链接:点击这里

Node.js 中 http 模块的深度剖析与实战应用小结

《Node.js中http模块的深度剖析与实战应用小结》本文详细介绍了Node.js中的http模块,从创建HTTP服务器、处理请求与响应,到获取请求参数,每个环节都通过代码示例进行解析,旨在帮... 目录Node.js 中 http 模块的深度剖析与实战应用一、引言二、创建 HTTP 服务器:基石搭建(一

SpringBoot使用注解集成Redis缓存的示例代码

《SpringBoot使用注解集成Redis缓存的示例代码》:本文主要介绍在SpringBoot中使用注解集成Redis缓存的步骤,包括添加依赖、创建相关配置类、需要缓存数据的类(Tes... 目录一、创建 Caching 配置类二、创建需要缓存数据的类三、测试方法Spring Boot 熟悉后,集成一个外