Re: XML-RPC server-client communication

2006-07-06 Thread Stefka
no, its an extern IP adress. For my needs the server and the client must be on different machines. But I opened the port and it worked. Thanks anyway :) Greetz, Stefka Marco Aschwanden wrote: > > server = SimpleXMLRPCServer.SimpleXMLRPCServer(("xxx.xxx.xxx.xxx", > > 22999)) > > Could it be that x

Re: XML-RPC server-client communication

2006-07-06 Thread Marco Aschwanden
> server = SimpleXMLRPCServer.SimpleXMLRPCServer(("xxx.xxx.xxx.xxx", > 22999)) Could it be that xxx.xxx.xxx.xxx stands for '127.0.0.1'? If so... rename it to 'localhost'. If you bind a port to 127.0.0.1 it will be found only on the same machine. Greetings, Marco -- http://mail.python.org/mai

Re: XML-RPC server-client communication

2006-07-05 Thread Stefka
Hi, thanx for the hint :)! I ran a port scan and it turned out, that the port was realy closed. Thanx again! greetz, Stefka Laszlo Nagy wrote: > Please go to the machine where you php program resides, and check if the > server is not blocked by firewall rules. For example, do > > telnet xxx.xxx

Re: XML-RPC server-client communication

2006-07-05 Thread Laszlo Nagy
Stefka írta: > Hi all, > > I try to implement a python xml-rpc server and call it from a php > client. If the server and the client are on the same machine > (localhost) the communication between them is just fine. When I start > the server on a different host I don't get an answer. > Please go

XML-RPC server-client communication

2006-07-05 Thread Stefka
Hi all, I try to implement a python xml-rpc server and call it from a php client. If the server and the client are on the same machine (localhost) the communication between them is just fine. When I start the server on a different host I don't get an answer. What is missing there?? I tried also to