G
Guest
I have a program (works fine under XP), sends a udp message using .net
udpclient and listens for a udp response from dedicated music server that our
company manufactures. It does not work under Vista.
I have Norton Anit-virus for Vista (completely turned off).
I also have Windows firewall (completely turned off).
Windows Firewall with Advanced Security shows everything turned off and no
rules.
I am not running Windows One-Care.
The hardware that should receive the udp message shows that it receives the
message when sent from Windows XP box, but not when sent from Vista.
Is this a known change from XP to Vista - or is there something else that
could be blocking the udp transmission?
Code portion that is not working in Vista:
UdpClient udpClientTx = new UdpClient();
byte[] sendBytes = Encoding.ASCII.GetBytes("ARQFIND ROLLCALL:\0");
IPEndPoint transmitIpep = new IPEndPoint(System.Net.IPAddress.Broadcast,
3662);
udpClientTx.Send(sendBytes, sendBytes.Length, transmitIpep);
udpClientTx.Close();
Thanks,
Jim Mead
udpclient and listens for a udp response from dedicated music server that our
company manufactures. It does not work under Vista.
I have Norton Anit-virus for Vista (completely turned off).
I also have Windows firewall (completely turned off).
Windows Firewall with Advanced Security shows everything turned off and no
rules.
I am not running Windows One-Care.
The hardware that should receive the udp message shows that it receives the
message when sent from Windows XP box, but not when sent from Vista.
Is this a known change from XP to Vista - or is there something else that
could be blocking the udp transmission?
Code portion that is not working in Vista:
UdpClient udpClientTx = new UdpClient();
byte[] sendBytes = Encoding.ASCII.GetBytes("ARQFIND ROLLCALL:\0");
IPEndPoint transmitIpep = new IPEndPoint(System.Net.IPAddress.Broadcast,
3662);
udpClientTx.Send(sendBytes, sendBytes.Length, transmitIpep);
udpClientTx.Close();
Thanks,
Jim Mead