473,785 Members | 2,807 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Need help on UDPclient.recei ve

Hi All,

I've allready posted this on the C# group (oops).

I'm trying to get a UDPclient to receive. I use the sample code provided in
HELP but to nbo avail. When the receive method is executed, it throws an
exception, claiming an invalid argument was used. The WinAPI description on
MSDN says:

Invalid argument.
Some invalid argument was supplied (for example, specifying an invalid level
to the setsockopt function). In some instances, it also refers to the current
state of the socket—for instance, calling accept on a socket that is not
listening.

which doesn't get me any further. I don't get it.

Please HELP,

Peter

Sample Code:

'Creates a UdpClient for reading incoming data.
Dim receivingUdpCli ent As New UdpClient()

'Creates an IPEndPoint to record the IP address and port number of the
sender.
' The IPEndPoint will allow you to read datagrams sent from any source.
Dim RemoteIpEndPoin t As New IPEndPoint(IPAd dress.Any, 0)
Try

' Blocks until a message returns on this socket from a remote host.
Dim receiveBytes As [Byte]() = receivingUdpCli ent.Receive(Rem oteIpEndPoint)

Dim returnData As String = Encoding.ASCII. GetString(recei veBytes)

Console.WriteLi ne(("This is the message you received " +
returnData.ToSt ring()))
Console.WriteLi ne(("This message was sent from " +
RemoteIpEndPoin t.Address.ToStr ing() + " on their port number " +
RemoteIpEndPoin t.Port.ToString ()))
Catch e As Exception
Console.WriteLi ne(e.ToString() )
End Try
End Sub 'MyUdpClientCom municator
Nov 21 '05 #1
1 2182
I found a workaround: use sockets and screw the UDPclient

just great....

Peter (Plem)

"Plem" wrote:
Hi All,

I've allready posted this on the C# group (oops).

I'm trying to get a UDPclient to receive. I use the sample code provided in
HELP but to nbo avail. When the receive method is executed, it throws an
exception, claiming an invalid argument was used. The WinAPI description on
MSDN says:

Invalid argument.
Some invalid argument was supplied (for example, specifying an invalid level
to the setsockopt function). In some instances, it also refers to the current
state of the socket—for instance, calling accept on a socket that is not
listening.

which doesn't get me any further. I don't get it.

Please HELP,

Peter

Sample Code:

'Creates a UdpClient for reading incoming data.
Dim receivingUdpCli ent As New UdpClient()

'Creates an IPEndPoint to record the IP address and port number of the
sender.
' The IPEndPoint will allow you to read datagrams sent from any source.
Dim RemoteIpEndPoin t As New IPEndPoint(IPAd dress.Any, 0)
Try

' Blocks until a message returns on this socket from a remote host.
Dim receiveBytes As [Byte]() = receivingUdpCli ent.Receive(Rem oteIpEndPoint)

Dim returnData As String = Encoding.ASCII. GetString(recei veBytes)

Console.WriteLi ne(("This is the message you received " +
returnData.ToSt ring()))
Console.WriteLi ne(("This message was sent from " +
RemoteIpEndPoin t.Address.ToStr ing() + " on their port number " +
RemoteIpEndPoin t.Port.ToString ()))
Catch e As Exception
Console.WriteLi ne(e.ToString() )
End Try
End Sub 'MyUdpClientCom municator

Nov 21 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
16050
by: Morten Overgaard | last post by:
Hi I'm listening on the SysLog port (514) through UDP. The problem is that I am not receiving anything nut I know that i get messages on the port. When I use KIWI to listen on the same port via UDP tons of messages arrive.. What am I'm doing wrong My code looks like the following... private UdpClient udpClient;
2
1309
by: Serdar C. | last post by:
im trying to write a really simple program that communicates with udp packets between server and client apps... but i cant receive (or send?) any data from any of the applications.. what am i doin wrong? here are the send and receive lines from my program: Server: ofcourse this void is in a system.thread and in a loop --------------------------------------------------------- IPEndPoint endpoint = new IPEndPoint(IPAddress.Any,2000); try
4
5156
by: Emilio | last post by:
In the help pages for the UdpClient there is some sample code which sends a udp message and prints what it received. Can someone help me to finish the code present there? I think basically the missing part is the server. Tia.
0
1238
by: Steve | last post by:
I am looking into UdpClient sample code from MSDN where one UdpClient object used for both send and receive operation. Please take a look at the link below http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemnetsocketsudpclientclasstopic.asp I can't make similar to this code work. The udpClient.Receive method waits for timeout seconds and then throws exception "timeout expired". If however I use...
3
13693
by: D. André Dhondt | last post by:
In VB.NET 2003, is there a way to create a System.Net.Sockets.UDPClient to listen to any address AND any port? I can get it to listen to any address, but only if I specify a port (for example, port 12345): '----------- Dim udpClient as New Sockets.UdpClient(12345) Dim ipEndPoint as New IPEndPoint(IPAddress.Any, 0) Dim receiveBytes as Byte()
1
2526
by: tccode97 | last post by:
Hi, I need an urgent help. I am developing a socket application in VC++ that uses asynchronous connnection. After doing search on google, I found the following link http://msdn2.microsoft.com/en-us/library/system.net.sockets.udpclient...
2
2899
by: ssmulgund | last post by:
What I'm trying to do seems pretty simple on the face of it -- create a UDP listener on a particular port. My code is as follows: int port = 9000; IPEndPoint endPoint = new IPEndPoint(IPAddress.Any, port); UdpClient listener = new UdpClient(endPoint); // or new UdpClient(port); while (true){ byte bytes = listener.Receive(ref endPoint);
7
3576
by: | last post by:
I have the following program using System; using System.Collections; using System.Net.Sockets; using System.Net; using System.IO; public class Test { public static void Main(string s) {
0
1654
by: Johan | last post by:
Suppose: There are two devices on my network that both broadcast UDP datagrams (and they both use the same portnumber 1234). I want to create two executables that use UdpClient internally. Each executable should only receive the datagrams from one device. Is this possible? Lets say the devices are 10.0.0.1 and 10.0.0.2. I have already tried something like this: UdpClient udpClient = new UdpClient(1234);
0
9645
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9481
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10336
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8978
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6741
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5513
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4054
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3655
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2881
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.