Re: access to xml_rpc server problem

2006-09-21 Thread Steve Holden
Ted Zeng wrote: > HI, > > I run a xml_rpc server like the following:(sample code from internet) > > server = SimpleXMLRPCServer.SimpleXMLRPCServer(("localhost", 8000)) > server.serve_forever() > > If my client is on the same machine, I use :(also from internet sample > code) > > server = xmlrpc

RE: access to xml_rpc server problem

2006-09-20 Thread Ted Zeng
age- From: Gabriel Genellina [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 20, 2006 5:38 PM To: Ted Zeng Cc: Eric Smith; python-list@python.org Subject: Re: access to xml_rpc server problem At Wednesday 20/9/2006 21:30, Ted Zeng wrote: >But if I use server's ip address instea

Re: access to xml_rpc server problem

2006-09-20 Thread Gabriel Genellina
At Wednesday 20/9/2006 21:30, Ted Zeng wrote: But if I use server's ip address instead of localhost in the client, then it could not access the server. Maybe you have a firewall blocking access? Gabriel Genellina Softlab SRL ___

access to xml_rpc server problem

2006-09-20 Thread Ted Zeng
HI, I run a xml_rpc server like the following:(sample code from internet) server = SimpleXMLRPCServer.SimpleXMLRPCServer(("localhost", 8000)) server.serve_forever() If my client is on the same machine, I use :(also from internet sample code) server = xmlrpclib.Server('http://localhost:8000') pr