如何使用 Python 服务器调试 Apache XML-RPC 客户端

发布于 2024-08-24 14:45:46 字数 135 浏览 10 评论 0 原文

我正在编写 xmlrpc 代码来在 Apache XML-RPC 客户端和 Python SimpleXMLRPCServer 之间进行通信。我很难调试它,因为我找不到查看请求 XML/响应 XML 的方法。无论如何,我可以看到它转储到控制台或登录文件吗?

I am writing xmlrpc codes to communicate between Apache XML-RPC client and a Python SimpleXMLRPCServer. I have difficulty debugging it, because I can't find a way to see the request XML/response XML. Are there anyway I can see it dump to console or logged in file?

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

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

发布评论

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

评论(3

2024-08-31 14:45:46

使用网络数据包嗅探器,例如 etherealwireshark

Use a network packet sniffer like ethereal or wireshark.

盗心人 2024-08-31 14:45:46

您还可以在 python xmlrpc 客户端中使用 verbose=True
例子:

s = xmlrpclib.ServerProxy('http://test.xmlrpc.wordtracker.com/',verbose=True,encoding='UTF-8')

You can also use verbose=True in python xmlrpc client
Example:

s = xmlrpclib.ServerProxy('http://test.xmlrpc.wordtracker.com/',verbose=True,encoding='UTF-8')
伏妖词 2024-08-31 14:45:46

要调试 Python SimpleXMLRPCServer 代码,您可以使用 rpdb https://pypi.python.org/pypi/rpdb< /a>.

在要设置断点的服务器端代码中添加 rpdb.set_trace() 。它在端口 4444 上打开调试器。要连接到调试器,请远程登录到端口 4444。

在 SimpleXMLRPCServer 调试会话中,您可以看到请求 XML/响应 XML。

To debug the Python SimpleXMLRPCServer code you can use rpdb https://pypi.python.org/pypi/rpdb.

Add rpdb.set_trace() in the server side code where you want to set the breakpoint. It opens the debugger on port 4444. To connect to the debugger, telnet to port 4444.

In the SimpleXMLRPCServer debug session you can see the request XML/response XML.

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