如何在 python 中使用 suds 转储我的请求和服务器响应的原始 XML

发布于 2024-10-03 19:01:57 字数 154 浏览 2 评论 0原文

我正在使用 suds 0.4 和 python 2.6 与远程服务器通信。

它的 WSDL 加载完美,但任何函数调用都会返回错误。该服务器有问题。

现在我需要获取肥皂结构的转储,将其发送到服务器及其响应,无论是纯肥皂还是。

我怎样才能做到这一点?

i'm using suds 0.4 and python 2.6, to communicate with remote server.

It's WSDL loads perfectly, but any function call returns error. Something is wrong with that server.

Now i need to get a dump of soap structure, that is sent to server and it's response, in pure soap either.

How can i do that?

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

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

发布评论

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

评论(1

肩上的翅膀 2024-10-10 19:01:57

suds.transport 的日志记录设置为调试将获得发送和接收的消息。

对于交互式会话,我发现这很好:

import logging
logging.basicConfig(level=logging.INFO)
logging.getLogger('suds.client').setLevel(logging.DEBUG)
logging.getLogger('suds.transport').setLevel(logging.DEBUG)
logging.getLogger('suds.xsd.schema').setLevel(logging.DEBUG)
logging.getLogger('suds.wsdl').setLevel(logging.DEBUG)

from suds.client import Client
s = Client('http://someservice?wsdl')

对于发送和接收到文件的 XML,您需要使用日志记录设置,请参阅 http://docs.python.org/library/logging.html

Setting the logging for suds.transport to debug will get you the sent and received messages.

For an interactive session, I find this is good:

import logging
logging.basicConfig(level=logging.INFO)
logging.getLogger('suds.client').setLevel(logging.DEBUG)
logging.getLogger('suds.transport').setLevel(logging.DEBUG)
logging.getLogger('suds.xsd.schema').setLevel(logging.DEBUG)
logging.getLogger('suds.wsdl').setLevel(logging.DEBUG)

from suds.client import Client
s = Client('http://someservice?wsdl')

For specifically just the sent and received XML sent to a file, you'll need to play with the logging settings, see http://docs.python.org/library/logging.html

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