Re: [ADVANCED-DOTNET] TCP socket Communications

2007-05-17 Thread Peter Osucha
] TCP socket Communications Peter Osucha <[EMAIL PROTECTED]> wrote: > Ok, so I can create two socket objects from my C# app (the client app) > with settings as follows Three socket objects. > IP Address: 192.168.2.31, port: 6001 > IP Address: 192.168.2.32, port: 6001 > IP

Re: [ADVANCED-DOTNET] TCP socket Communications

2007-05-17 Thread Barry Kelly
Peter Osucha <[EMAIL PROTECTED]> wrote: > Ok, so I can create two socket objects from my C# app (the client app) > with settings as follows Three socket objects. > IP Address: 192.168.2.31, port: 6001 > IP Address: 192.168.2.32, port: 6001 > IP Address: 192.168.2.33, port: 6001 If there are th

Re: [ADVANCED-DOTNET] TCP socket Communications

2007-05-17 Thread Peter Osucha
@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] TCP socket Communications Peter Osucha <[EMAIL PROTECTED]> wrote: > How does the 'TCP Stack' 'do it for me' on the varying the ports thing. Ports are like doors, IP addresses are like house addresses. Your machine has u

Re: [ADVANCED-DOTNET] TCP socket Communications

2007-05-17 Thread Barry Kelly
Peter Osucha <[EMAIL PROTECTED]> wrote: > How does the 'TCP Stack' 'do it for me' on the varying the ports thing. Ports are like doors, IP addresses are like house addresses. Your machine has usually only one house address (unless it is multi-homed - i.e. has more than one network adapter), but h

Re: [ADVANCED-DOTNET] TCP socket Communications

2007-05-17 Thread Peter Osucha
cketType.Stream, ProtocolType.Tcp ); lock ( _socket ) _socket.Connect ( hostIPEndPoint ); Peter -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Doug Wilson Sent: Thursday, May 17, 2007 1:49 PM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Su

Re: [ADVANCED-DOTNET] TCP socket Communications

2007-05-17 Thread Mike Woodring
> I haven't tried it, perhaps I > should before typing this response - but an I connect to different IP > addresses all with the same port (ie, can I connect to 5 different IP > addresses all using a port number of 6001)? Yes. That's what happens when you have N browser tabs open to different web

Re: [ADVANCED-DOTNET] TCP socket Communications

2007-05-17 Thread Doug Wilson
Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Peter Osucha Sent: Thursday, May 17, 2007 9:58 AM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] TCP socket Communications Doug, No, you have not oversimplified this.

Re: [ADVANCED-DOTNET] TCP socket Communications

2007-05-17 Thread Peter Osucha
ssage- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Doug Wilson Sent: Thursday, May 17, 2007 12:54 PM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] TCP socket Communications If I understand you correctly, all the embeddedXP (C++ app)

Re: [ADVANCED-DOTNET] TCP socket Communications

2007-05-17 Thread Doug Wilson
ubject: Re: [ADVANCED-DOTNET] TCP socket Communications Terry, Thanks for the reply. The C++ app is listening on port 6001. When I connect using this port, I do establish a connection (the C++ app is setup, apparently, to send a response when a successful connection is made on the port on w

Re: [ADVANCED-DOTNET] TCP socket Communications

2007-05-17 Thread Terry Griffin
USA [EMAIL PROTECTED] (978) 826-1569 Peter Osucha <[EMAIL PROTECTED]> Sent by: "Discussion of advanced .NET topics." 05/17/2007 10:26 AM Please respond to "Discussion of advanced .NET topics." To ADVANCED-DOTNET@DISCUSS.DEVELOP.COM cc Subject Re: [ADVANCED-DOTNET]

Re: [ADVANCED-DOTNET] TCP socket Communications

2007-05-17 Thread Peter Osucha
Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Terry Griffin Sent: Thursday, May 17, 2007 9:48 AM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] TCP socket Communications Hi Peter, The port number you use

Re: [ADVANCED-DOTNET] TCP socket Communications

2007-05-17 Thread Terry Griffin
OM cc Subject [ADVANCED-DOTNET] TCP socket Communications Hello, Perhaps my question would be better served by another list - if so, can you kindly point me to a more appropriate place, please? I am working on a C# app to communicate with other machines on my local network. Each ho

[ADVANCED-DOTNET] TCP socket Communications

2007-05-17 Thread Peter Osucha
Hello, Perhaps my question would be better served by another list - if so, can you kindly point me to a more appropriate place, please? I am working on a C# app to communicate with other machines on my local network. Each host machine is running a small C++ application (on embeddedXP) and is w