473,800 Members | 2,467 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

UDPClient.Recei ve Issue

Ok, I'm not all that great with VB.Net, I admit that early on. Used to get
on well with VB6 but we can't all live in the past I'm told. :)

Basically, the following is a sample procedure, which is run by a background
worker (multi-threading is new to me...).

The procedure is supposed to get my worker thread to start listening on the
specified port. Slightly after the worker thread begins listening, the main
thread attempts to send a byte array on the same port, addressed to the local
machine (I have no idea whether its possible to send something to myself, I
kind of envisioned the packets being sent off to the router and bouncing back
to me).

I'm only sending stuff to myself to 'test' the connection, the application
will hopefully send off to other computers on the network once I get this
working.

The code is:
Public Function UDPHandleComman ds(ByVal worker As
System.Componen tModel.Backgrou ndWorker, _
ByVal e As System.Componen tModel.DoWorkEv entArgs) As Boolean

Dim receiveBytes As [Byte]()
Dim rUDPClient As New UdpClient
Dim RemoteIpEndPoin t As New IPEndPoint(IPAd dress.Any, 0)
Dim returnData As String = String.Empty
Dim SendersIP As String = String.Empty
Dim ReceivedEx As String = String.Empty

Try
Do
'this is the line I'll refer to as the .Receive line
receiveBytes = rUDPClient.Rece ive(RemoteIpEnd Point)
returnData = Encoding.ASCII. GetString(recei veBytes)
System.Threadin g.Thread.Sleep( 250)
Loop Until worker.Cancella tionPending = True Or Not returnData =
""

SendersIP = RemoteIpEndPoin t.Address.ToStr ing()
ReceivedEx = returnData.ToSt ring()
Catch ex As Exception
Return False
Exit Function
End Try

'other stuff would go on below if this worker thread actually
received anything

The problem I get is after sitting on the the .Receive line (look at the
code, there's a comment above the line I mean) for a short period, I get an
exception in the immediate window, though the worker sits on that line and
doesn't budge.

The exception in the immediate window is:
"A first chance exception of type 'System.Invalid OperationExcept ion'
occurred in System.dll"

The .Receive line is inside a 'Try' as you can see, but at no point do I
catch anything.

It was my understanding that if I send something to that port, when it has
finished receiving it will unblock itself and move on to the next line, which
in my case will convert the received packets into something more readable
hopefully.

However, I have sat F8'ing every line of code up until the worker gets to
receive, and then watched the main thread send something off on that port,
and not have any problems (despite me using obsolete code to resolve hostname
from IP address).

Can someone please tell me where I'm going wrong? I spent ages getting this
application to work as far as it does, really annoying that I can't work out
whats wrong with the above line :(

--
-------------------------------
Please respond to my posts via the newsgroup as the e-mail provided is not
monitored.
Jul 30 '08 #1
0 1515

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

Similar topics

4
16053
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
1823
by: Richy Rich | last post by:
Hi, I've developed an application in C# which spawns a thread to receive datagrams. If I use the socket receive method, there are no problems when using the application under NT or XP. I recently moved over to using the UdpClient receive method. This was so I could record the IPEndPoint from
1
3974
by: Dan Kelley | last post by:
I have 2 projects - 1 Winform project that sends Udp messages using the UdpClient class when a button is clicked, and a Console application that listens for these Udp messages. If I try to use the UdpClient class to receive, it never works. The messages are never received (no exceptions). If I use a normal socket configured to listen for Udp messages, it works perfectly. Below is my sample code. It is only test code - I know the...
2
11901
by: Rick | last post by:
Hi, I'm trying to get a simple UdpClient app working. I've been looking at the MSDN info regarding UdpClient. When I set it up on my own PC and send messages to myself it works OK. If I try to send messages to another PC with another IP address I get multiple exception, the first one being "The requested address is not valid in its context". I get this when I create my UdpClient(iplistener) where iplistener is an IPEndPoint. It doesn't...
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...
2
2651
by: Emilio | last post by:
Question about UdpClient sample ' This constructor arbitrarily assigns the local port number. Dim udpClient As New UdpClient() Try udpClient.Connect("www.contoso.com", 11000) ' Sends a message to the host to which you have connected. Dim sendBytes As () = Encoding.ASCII.GetBytes("Is anybody there?")
3
13694
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()
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
1026
by: Karl Durrance | last post by:
Hi all, I am having a weird issue with sending and receiving multicast messages either using the UDPClient object or directly with sockets. Normally, my application works perfectly, receiving all messages async through the BeginRecieve() method of the UDPClient. But in some circumstances, for instance while connected to a Cisco VPN, my application just doesn¹t receive any multicast messages (the BeginRecieve()
0
9551
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
10505
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
10276
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10035
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
9090
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
5471
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
5606
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3764
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2945
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.