Hello,
i have a simple xml rpc server running on a host (e.g. 1.2.3.4)... the server has the following address:
servAddr = ("localhost" , 8080)..
when i run the client on a different machine (e.g. 5.6.7.8) i get a connection refused error...
however, when i change the line
servAddr = ("localhost" , 8080)
to
servAddr = ("1.2.3.4", 8080)
everything works fine...
what's wrong?
(note: both machines run linux in case this is a network related problem and not a python related one)
thanks for your time...
i have a simple xml rpc server running on a host (e.g. 1.2.3.4)... the server has the following address:
servAddr = ("localhost" , 8080)..
when i run the client on a different machine (e.g. 5.6.7.8) i get a connection refused error...
however, when i change the line
servAddr = ("localhost" , 8080)
to
servAddr = ("1.2.3.4", 8080)
everything works fine...
what's wrong?
(note: both machines run linux in case this is a network related problem and not a python related one)
thanks for your time...
Comment