Henrici
asked on
Windows Service
I have a simple Client / Server example written in VS 2005 C#. I am testing both on the _same_ XP SP2 machine. I am trying to make the Client send the Server a UDP message. In the CLient, if I use my loopback address like below, all works as expected. If I instead use my actualy IP address in the Client, then it does not work. But I need the UDP packet to actually go across the wire. Any ideas?
Works : IPAddress broadcast = IPAddress.Parse("127.0.0.1 ");
Does not Work: IPAddress broadcast = IPAddress.Parse(_myIPAdrre ss_);
Works : IPAddress broadcast = IPAddress.Parse("127.0.0.1
Does not Work: IPAddress broadcast = IPAddress.Parse(_myIPAdrre
when you tested it with your ip did you disable the loopback adapter?
Did you get an execption? If so, what did it say?
ASKER
I did not disable the loopback adapter and I am not sure why that would matter. No, I did not get an exception. I suspect this is a Firewall thing but not sure how to proceed.
So, just disable the firewall completely, to see if that fixes it. If so, you can go back and do a more "surgical approach" to allow your application to pass.
i know that sometimes -- depending on the drivers that i use for my adapters, they can get 'confused' like i have to disable my wireless to get my net nic or wireless nic to work or my wireless to get my net nic or loopback to work. why not just try it and see?
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
Out of curiosity, was it the firewall like graye suggested several posts back, or was it an antivirus issue like p_davis suggested.
Shawn
Shawn