名称上带有点的 SOAP 方法描述

发布于 2024-12-19 14:35:13 字数 200 浏览 2 评论 0原文

好的,我在使用带有 python 的肥皂客户端和肥皂服务器时遇到问题,该服务器提供方法名称及其上的点,如“MyClass.mymethod(xs:string)”。

这是由一个名为 nusoap 的 PHP 库引起的,它可以用它来处理这些类型的名称。

我尝试过使用泡沫和肥皂,但没有成功。

有人解决过类似的问题吗?

谢谢。

Ok, i've a problem consuming a soap client with python with a soap server that gives method's name with points on it like 'MyClass.mymethod(xs:string)'.

This is cause by a PHP lib called nusoap that can handle those types of name with it.

I've tried with suds and SOAPy without success.

Anyone have solve a similar issue?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沧桑㈠ 2024-12-26 14:35:13

要避免在您可以访问的方法名称中使用句点,请使用客户端对象上可用的函数映射。
EG

return = client.service[0]['MyClass.mymethod']('input string')

这是对现有信息的最佳猜测

希望有帮助

To negate the use of a period in the method name you could access is using the map of function avaiable on the client object.
E.G.

return = client.service[0]['MyClass.mymethod']('input string')

That's a best guess with teh available information

Hope that helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文