I have a SimpleXMLRPCServer server (Python).
How can I get the IP address of the client in the request handler?
This information appears in the log. However, I am not sure how to access this information from within the request handler.
|
I have a SimpleXMLRPCServer server (Python). How can I get the IP address of the client in the request handler? This information appears in the log. However, I am not sure how to access this information from within the request handler.
| |||
|
feedback
|
|
The request handler itself should have a property
| |||
feedback
|
|
As Michael noted, you can get
| |||
|
feedback
|
|
One way to pass the ip address to the request method is to override RequestHandler.decode_request_content. decode_request_content returns a XML string. Example:
Just slip another parameter in there.
and update your method signatures accordingly. | |||
|
feedback
|