I have two IPs mapping to the machine, and I was wondering how I can have one python xmlrpc server listening on both IPs (same port), like you could do with Apache.

Thank you,

link|improve this question

25% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Use "" as the host:

s = SimpleXMLRPCServer.SimpleXMLRPCServer(("", 8000))
link|improve this answer
You see, I would have spent hours trying to figure this out, or coming up with a a harder way to go about it. I thank you sir. – BME Jan 20 '10 at 0:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.