重写 gSOAP 中的命名空间
我使用 gSOAP
作为 Web 服务工具包,并生成了存根和代理类一次从多个 WSDL
中通过 soapcpp2
进行操作。 因此,所有命名空间绑定都位于单个 .nsmap
文件中。
现在的问题是,所有名称空间绑定都与我进行的所有方法调用一起发送。 HTTP POST
数据包异常大且难看。
有没有办法以编程方式覆盖名称空间绑定?
I am using gSOAP
as a Web Service toolkit and have generated the stub and proxy classes through soapcpp2
from multiple WSDL
s all at once. Thus all the namespace bindings are in a single .nsmap
file.
Now the problem is that all the namespace bindings are being sent with all the method calls I make. The HTTP POST
packet is unusually large and ugly.
Is there a way to programatically override the namespace bindings ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查
soapcpp2
及其-q
标志,它会对您有所帮助。除此之外,
-penv
标志将在可执行文件中打包与 gSOAP 相关的基本方法,不包括任何服务对象。因此,使用
-penv
生成的文件可以在多个命名空间之间共享,与生成的不同 gSOAP Web 服务相关。Check
soapcpp2
and its-q
flag, it will help you.Other than that, the
-penv
flag will pack basic gSOAP-related methods within the executable, not including any service objects.Therefore the files generated with
-penv
can be shared across multiple namespaces, pertaining to different generated gSOAP Web Services.