您在哪里使用过 gSOAP?
您能否举例说明如何使用 gSOAP 以及它在现有架构中的集成情况如何? 您是否发现 gSOAP 的开发瓶颈?
Can you give examples how you used gSOAP and how well it was integrated in your existing architecture? Have you found development bottlenecks with gSOAP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我们使用 gSOAP 让一组 ARM 客户端与 AXIS Web 服务服务器进行通信。 gSOAP 的优点:
所有 Web 服务复杂性。但是,我们遇到了几个开发瓶颈:
We used gSOAP for a bunch of ARM clients to communicate with an AXIS Web Service server. Pros of gSOAP:
However, we ran into several development bottlenecks:
大约 4 年前,我们在基于 C++ 的 Web 服务器中使用了 gSOAP。 总体来说效果很好。 唯一的主要问题是接口是用 C 语言和过程化的(我知道设计一个好的非过程化接口是很困难的)。 在实现接口时可能会有很多重复的代码,为此您可能必须使用宏(当时我们没有过多地探索模板选项)。
We used gSOAP in a C++-based web server about 4 years back. Overall it worked fine. The only major issue was that the interface was in C and procedural (I understand it is difficult to design a good non-procedural interface). There may be a lot of repeated code while implementing the interface, for which you might have to use macros (we didn't explore the templates option too far then).
我们使用 gSoap 将 Web 服务部署到运行 ARM MX 处理器的嵌入式 Linux 设备上。
We are using gSoap to deploy a web service onto an embedde linux device running an ARM MX processor.
我们使用 gSOAP 从部署在 ARM 处理器上运行的 Linux 设备上的应用程序中使用基于 WCF 的 Web 服务。 体验在很大程度上是好的。
We are using gSOAP to consume a WCF based webservice from an application deployed on a linux device running on ARM processor. The experience is good to a large extent.
我们在 ARM ARM9 400MHz 设备上的 Web 服务器中使用了 gSOAP。
gSOAP 守护程序通过 Zeromq 库连接到数据库守护程序,该程序在同一设备上运行。
它支持超过 1000 个基本请求,不需要连接到数据库。
通过WITH_NOIDREF 定义禁用对多引用SOAP 选项的支持有助于将具有大量序列化节点的大请求的序列化时间缩短约4 倍。
We used gSOAP in a web server on ARM ARM9 400MHz device.
gSOAP daemon connected to a database daemon through zeromq library, which is run on the same device.
It supports more than 1000 basic requests wich does not requre connection to database.
Disabling support for multi-referenced SOAP option by the WITH_NOIDREF define helped to decrease serialization time about 4 times faster on big requests with large number of serialization nodes.