如何使用 Python 服务器调试 Apache XML-RPC 客户端
我正在编写 xmlrpc 代码来在 Apache XML-RPC 客户端和 Python SimpleXMLRPCServer 之间进行通信。我很难调试它,因为我找不到查看请求 XML/响应 XML 的方法。无论如何,我可以看到它转储到控制台或登录文件吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用网络数据包嗅探器,例如 ethereal 或 wireshark。
Use a network packet sniffer like ethereal or wireshark.
您还可以在 python xmlrpc 客户端中使用 verbose=True
例子:
You can also use verbose=True in python xmlrpc client
Example:
要调试 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.