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

Home Posts Topics Members FAQ

Need help with UdpClient

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.
Nov 16 '05 #1
4 5156
I've tried everything to get this sample to work but I never receive
anything. Both pc-s are connected ok; ping works both ways and a udp test
program gets messages across both ways. When I use the Send method I get
messages to the other pc fine. Receive only gives me trouble. I copied the
example from HELP. It throws an exception telling me I 'm feeding it an
invalid argument...

It all looked straight forward but I'm getting desparate

Peter

"Emilio" wrote:
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.

Nov 16 '05 #2
Plem,

Please include your source...

I would suggest not using UdpClient due to a timeout not being able to
be set
in the receive method..The receive call has to be in a thread worker,
which needs
to be aborted in a timeout situation.

David.

Nov 16 '05 #3
Plem,

Please include your source...

I would suggest not using UdpClient due to a timeout not being able to
be set
in the receive method..The receive call has to be in a thread worker,
which needs
to be aborted in a timeout situation.

David.

Nov 16 '05 #4
David,

Good idea...

The code below is a sample from the VS help... very straight forward. No
default host is set with the connect method so it should receive from any
host... it doesn't

It bangs out saying:
---------
System.Net.Sock ets.SocketExcep tion: Invalid Argument
at System.Net.Sock ets.Socket.Rece iveFrom(Byte[] buffer, Int32 offset,
Int32 size, SocketFlags socketFlags, EndPoint& remoteEP)
at System.Net.Sock ets.Socket.Rece iveFrom(Byte[] buffer, Int32 size,
SocketFlags socketFlags, EndPoint& remoteEP)
at System.Net.Sock ets.UdpClient.R eceive(IPEndPoi nt& remoteEP)
---------

********
Private Function MicrosoftSample () As Integer
'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 Function
*******

If I create an instance of an IPEndpoint and set it to the remotehost, this
occurs just the same. If I first use the connect method to set the default
host, the code hangs in the receive method as if there is nothing to receive.
(I KNOW that is not true)

Peter
"da*********@eu rope.com" wrote:
Plem,

Please include your source...


Nov 16 '05 #5

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

Similar topics

0
11866
by: Stephan Steiner | last post by:
Hi The project I'm currently working on involves sending large UDP broadcasts. As the .NET framework already provides an easy facility for sending and receiving UDP packets I thought it was a good idea to use UdpClient rather than sockets directly. A few weeks back I ended up rewriting the receiver part to use sockets directly because I had to manipulate some low level socket properties, and those manipulations would fail on the...
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
9531
by: goodmannewz | last post by:
I just cannot run the sample code from msdn. Please tell me why? Thanks a lot. I create a console C# project, parsed the example codes: public class UDPMulticastListener { private static readonly IPAddress GroupAddress = IPAddress.Parse("192.168.0.1"); private const int GroupPort = 9200; private static void StartListener()
1
2182
by: Plem | last post by:
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.
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()
0
2213
by: tccode97 | last post by:
To whom it may concern, 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.beginreceive.aspx First of all, thanks for microsoft team for this post.
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...
1
2255
by: Jerry Spence1 | last post by:
I have the following piece of code: Dim udpClient As New UdpClient Dim MyData = "1234567890ABC" udpClient.Connect("255.255.255.255", 999) Dim sendBytes As () = Encoding.ASCII.GetBytes(MyData) udpClient.Send(sendBytes, sendBytes.Length) The puzzle is that MyData has to be greater than 13 bytes to work. Any less
0
2034
by: matt | last post by:
Hi I built a class to poll an app on a udp port using the sync methods which worked fine. I've since changed to using beginreceive and now the poll works but I don't receive the response from the app. Both apps run on teh same machine using the loopback address. I listen on all ports and then the callback never fires but if I specify a port and send to that port the
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
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...
1
10095
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9953
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
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...
1
7502
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5383
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5513
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
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.