views:

171

answers:

1

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?

A: 

Use a network packet sniffer like ethereal or wireshark.

Seun Osewa