Re: socket.error connection refused

2006-11-24 Thread Bjoern Schliessmann
Vania wrote: > For anyone interested restarting windows fixed the connection > problem. Some nifty "firewall" software? 8) Regards, Björn -- BOFH excuse #78: Yes, yes, its called a design limitation -- http://mail.python.org/mailman/listinfo/python-list

Re: socket.error connection refused

2006-11-24 Thread Vania
Thanks for the explanation. Probably the fact that I was working inside a virtual machine didn't help. Vania robert ha scritto: > Vania wrote: > > Hi, I'm not sure this is the proper forum but I try nevertheless. > > The problem I'am facing is that the socket library always fail to > > connect

Re: socket.error connection refused

2006-11-24 Thread robert
Vania wrote: > Hi, I'm not sure this is the proper forum but I try nevertheless. > The problem I'am facing is that the socket library always fail to > connect to an URL. The net effect is that I can not use setuptools. > I'm using Python2.4 on a windows XPPRO Sp2 machine. > The firewall is disabled

Re: socket.error connection refused

2006-11-24 Thread Vania
For anyone interested restarting windows fixed the connection problem. -- http://mail.python.org/mailman/listinfo/python-list

Re: socket.error connection refused

2006-11-23 Thread Vania
Hi, the telnet call succeed Vania Bjoern Schliessmann ha scritto: > Vania wrote: > > > IOError: [Errno socket error] (10061, 'Connection refused') > > What does "telnet www.google.com 80" in some cmd.exe window say? The > same? > > Regards, > > > Björn > > -- > BOFH excuse #36: > > dynamic so

Re: socket.error connection refused

2006-11-23 Thread Bjoern Schliessmann
Vania wrote: > IOError: [Errno socket error] (10061, 'Connection refused') What does "telnet www.google.com 80" in some cmd.exe window say? The same? Regards, Björn -- BOFH excuse #36: dynamic software linking table corrupted -- http://mail.python.org/mailman/listinfo/python-list

Re: socket.error connection refused

2006-11-23 Thread Vania
Hi, the reason I mentioned the socket is because that is where the error eventually occurs. the code I tried manually (with different urls including a local one) is the following: import urllib fo=urllib.urlopen("http://www.google.com";) the error I get is: File "", line 1, in ? File "C:\Py

Re: socket.error connection refused

2006-11-23 Thread Tim Williams
On 23 Nov 2006 04:09:18 -0800, Vania <[EMAIL PROTECTED]> wrote: > Hi, I'm not sure this is the proper forum but I try nevertheless. > The problem I'am facing is that the socket library always fail to > connect to an URL. The net effect is that I can not use setuptools. > I'm using Python2.4 on a wi

socket.error connection refused

2006-11-23 Thread Vania
Hi, I'm not sure this is the proper forum but I try nevertheless. The problem I'am facing is that the socket library always fail to connect to an URL. The net effect is that I can not use setuptools. I'm using Python2.4 on a windows XPPRO Sp2 machine. The firewall is disabled. There is no NLTM prox