如何在 python 中使用 suds 转储我的请求和服务器响应的原始 XML
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
suds.transport
的日志记录设置为调试将获得发送和接收的消息。对于交互式会话,我发现这很好:
对于发送和接收到文件的 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:
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