名称上带有点的 SOAP 方法描述
好的,我在使用带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要避免在您可以访问的方法名称中使用句点,请使用客户端对象上可用的函数映射。
EG
这是对现有信息的最佳猜测
希望有帮助
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.
That's a best guess with teh available information
Hope that helps