Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,我有一个问题使用带有 python 的肥皂客户端和一个肥皂服务器,它给出了方法的名称,上面有点,比如“MyClass.mymethod(xs:string)”。
这是由一个名为 nusoap 的 PHP 库引起的,它可以用它来处理这些类型的名称。
我尝试过使用 suds 和 SOAPy,但没有成功。
有人解决过类似的问题吗?
谢谢。
要否定您可以访问的方法名称中使用句点,请使用客户端对象上可用的函数映射。例如
return = client.service[0]['MyClass.mymethod']('input string')
这是可用信息的最佳猜测
希望有帮助