On Friday 22 May 2009 11:05:42 am Alan Franzoni wrote:
> TechieInsights was kind enough to say:
[...]
> My first guess would be that you didn't specify the interface to bind to,
> and the interface order changes once you install virtualbox since it
> possibly adds a virtual interface of its own,
[
On 22 Mai, 17:05, Alan Franzoni wrote:
>
> My first guess would be that you didn't specify the interface to bind to,
> and the interface order changes once you install virtualbox since it
> possibly adds a virtual interface of its own, but I can't tell unless you
> tell something more.
If a reque
TechieInsights was kind enough to say:
[cut]
You're giving very few details on your issue, which is most probably not
related to python itself. Which operating system? Which virtualbox version?
Which kind of connection? Is the port open for listen? Does the code fail
at listening or at connecting
I have created a server and client that communicate via a TCP socket
connection. Everything runs great on 6 of the 6 boxes. However, when
I installed Sun's VirtualBox on one of the PC's I started getting:
error: (10061, 'Connection refused')
I tried restarting, stopping services, checking out a
On 17 Jan, 21:32, Jeff McNeil wrote:
> On Jan 17, 4:11 pm, twistedduck9
> wrote:
>
>
>
> > My hosting provider (Streamline) have said that there is no firewall
> > (it's a dedicated server). Either way the code I'm using is:
>
> > Listening socket:
> > import socket
> > mysock = socket.socket(soc
On Jan 17, 4:11 pm, twistedduck9
wrote:
> My hosting provider (Streamline) have said that there is no firewall
> (it's a dedicated server). Either way the code I'm using is:
>
> Listening socket:
> import socket
> mysock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
> mysock.bind (('79.99.43
My hosting provider (Streamline) have said that there is no firewall
(it's a dedicated server). Either way the code I'm using is:
Listening socket:
import socket
mysock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
mysock.bind (('79.99.43.58', 2727))
mysock.listen(1)
while True:
channel,
twistedduck9 wrote:
Hi all
I've been trying to set up sockets on my server (running Apache/2.2.3)
using python and I'm confused as to why it doesn't work.
I set up a simple listening script which runs without error, and works
if a connecting script is run on the same server. However, if I try t
Hi all
I've been trying to set up sockets on my server (running Apache/2.2.3)
using python and I'm confused as to why it doesn't work.
I set up a simple listening script which runs without error, and works
if a connecting script is run on the same server. However, if I try to
connect using Telnet