UdpClient (System.Net.Sockets.UdpClient) is a .NET-Class allowing to send and receive UDP-Traffic.

learn more… | top users | synonyms

0
votes
1answer
22 views

Online Multiplayer Game Send/Receive Information

I am coding a poker game in vb.net, and I want to create a multiplayer game using the internet, whether it being on WAN or LAN. I really have no idea where to start, and I don't know what to search on ...
0
votes
1answer
30 views

Java - How to download a file using UDP connection?

I want to test connection by uploading & downloading using UDP connection. I done with uploading. How can I do downloading a file using UDP connection. Please help me on this.
2
votes
3answers
49 views

UDP local broadcast

I'm working on a remote control tool. The client runs a program to locally send commands to servers in order to control them. However, the client doesn't know the server's IP address and vice versa. ...
0
votes
1answer
31 views

How can I handle when a UdpClient is listening on an address which is no longer available?

I'm using a UdpClient, bound to a provided end point, to listen for incoming packets. My code is as follows: ... string myIpAddress = "192.168.1.100"; int myPort = 50000; ...
0
votes
2answers
57 views

UdpClient does not receive multicast packets occasionally

I've written an server-application that is supposed to send and listen to upnp packets on several specified interfaces (but the problem already existed when there was only one network card). The code ...
0
votes
0answers
50 views

UdpClient.BeginReceive callback: IAsyncResult comes null

I've a code that read UDP messages received on a multicast port. I got some time a weird behavior, but it's very rare: The IAsyncResult callback parameter of the BeginReceive method is null. And I ...
0
votes
0answers
70 views

C++ send UDP message to node.js UDP server has unrecognizable code

My node.js UDP server's code is var PORT = 515; var HOST = '127.0.0.1'; var dgram = require('dgram'); var server = dgram.createSocket('udp4'); server.on('listening', function () { var address ...
1
vote
1answer
121 views

Visual Basic UDPClient Server/Client model?

So I'm trying to make a very simple system to send messages from a client to a server (and later on from server to client as well, but baby steps first). I'm not sure exactly how to use UDPClient to ...
0
votes
0answers
31 views

.NET UDP Multicast reception

I am occassionally seeing a packet being received twice by my udp multicast reciever. I set up the multicast client as follows: private static void setupUdpMulticastClient() { ...
0
votes
1answer
31 views

PHP UDP socket_ recv() timeout

I am working on server/client php scripts which can communicate over a UDP socket. I was wondering if there is a good way to implement a timeout() for the socket_recv() function. Currently it is ...
1
vote
1answer
99 views

Why can't I receive text sent to localhost using UdpClient in C#?

I am trying to write a simple UDP program in C# which sends and receives data on localhost. I am a beginner in C# but much better at MATLAB so instead of writing the server and the client in C#, I ...
0
votes
0answers
68 views

Issues making UDP Server

I'm trying to develop an UDP Server Class in VB.NET the basic function is to receive a packet and if is OK send an ACK to the same client port. In example if the class is listening on port 4040 but ...
1
vote
3answers
118 views

Receiving udp packet on designated network card c#

I have 3 different network cards each with their individual responsibility. Two of the cards are receiving packets from a similar device (plugged directly into each individual network card) which ...
0
votes
2answers
58 views

return from read in connected udp sockets in c

i programming UDP client/Server model and the main functionaly for this app is client insert the directory path then the server will retrun the contents of supplied directory to the client, so this ...
3
votes
1answer
70 views

Delay in showing image use bitmap in android

I receive continuous UDP data (RAW image) from my device. Decoding it and use bitmap show on my Android phone so it will look like a video. The problem is that the frame don't show continuously. ...
0
votes
2answers
85 views

UdpClient Exception on async reception only on Windows XP

I've a c# code that works very well in Windows vista/seven, but not on Windows XP. The problematic part is a "multicast" node, that basically read and send data over a multicast address+port. The ...
0
votes
1answer
63 views

Why aren't local UDP packets delivered?

I'm trying to write a very simple UDP client/server pair that will work together on the same computer (for now), but none of my packets are being delivered. The code below is a 100% complete VB.NET ...
0
votes
1answer
83 views

c# udp client receivebtye unreadable

I've created a client which sends the get server list command, but the received bytes isn't readable. Here is my code : byte[] receiveBytes = udp.Receive(ref RemoteIpEndPoint); string[] ...
1
vote
1answer
81 views

how to read udp packets sent to 255.255.255.255

I have an application running on an iPhone that is broadcasting UDP packets. I want to write a console application that reads the UDP packets on my PC. I tried this example and was unable to read any ...
0
votes
0answers
171 views

An existing connection was forcibly closed by the remote host in udpClient.BiginReceive method

I am getting "An existing connection was forcibly closed by the remote host" error at UdpClient.BeginReceive method. what might be a problem ? This code is working in some ip which is in network ...
1
vote
3answers
412 views

UDP: Read data from all network interfaces

I've the following code to read multicast message coming from the network, for a specified IP+Port private static void ReceiveMessages(int port, string ip, CancellationToken token) { ...
2
votes
2answers
129 views

Get the IpAddress on which we received an UDP Multicast request

I'm using an UdpClient to read data from a multicast group. It's configured like this: m_udpClientReceiver = new UdpClient(); m_receivingEndPoint = new IPEndPoint(IPAddress.Any, m_port); ...
0
votes
0answers
54 views

Udpclient method lags in acquiring data

I am working on a simple UDP client server setup and after a while there is lag on the client when receiving data from the server. My thinking is the data buffer is filling up faster than the client ...
0
votes
0answers
40 views

multithreaded client for a UDP connection

I have to implement a client which basically has two threads(main and a listner thread). When ever a server send in the data to the client then only the listner thread should get active.... do some ...
3
votes
1answer
94 views

How to exchange packets with server in VB.NET?

I'm still completely newbie at vb.net. I apologize for my english. I want to get a gameserver information from server. Server is using GameSpy protocol. In order to get information, you will have to ...
0
votes
2answers
256 views

UdpClient: Specify the source port when sending a data

I'm using UdpClient to send data on multicast address. The code looks like this: m_udpclientSender = new UdpClient(); m_remoteEndPoint = new IPEndPoint(m_multicastAddress, m_port); ...
1
vote
1answer
258 views

Processing incoming messages from UdpClient.BeginReceive()

Okay, this is my first stack overflow question so please feel free to suggest better ways to ask or what I should include next time. Most of the time I can Google to get my answers but this one is a ...
1
vote
2answers
147 views

use .Net UdpClient in a multithreaded environment

I have an instance of a class (lets call it A) which serves some threads, this instance only sends UDP packets via the UdpClient class. It initialize the the UdpClient in its constructor and only ...
0
votes
0answers
111 views

How to use asynchronous Receive for UdpClient in a loop?

I am building a multi-threaded application. One of the threads is responsible for processing UDP messages that come from an external piece of hardware. I am currently using the UdpClient.Receive ...
-3
votes
1answer
71 views

How to easly compress image files into small size? [closed]

friends! Please, if anybody knows how to compress image files through standart java tools? I want to send image files through UDP packets but I'm getting exception that images size is too large!!! ...
2
votes
2answers
124 views

How to release unmanaged resources in a WCF service that is hosted in a Windows Service?

I have a WCF service hosted in a Windows Service. The WCF service has a thread that makes a UdpClient connection to an outside system. I am finding that when the Windows Service is stopped that the ...
0
votes
1answer
267 views

UDP P2P connection behind NAT

I want to make P2P connection between 2 clients behind NAT. I studied methods to make it work and I want to try "UDP hole punching method". So... I made a server in PHP, which can send connection ...
0
votes
1answer
333 views

receive all udp packets on multicast

i am using the c# UdpClient (client in code) to receive data on a multicast group. In a while loop the follwing happens: while(receiving) //First i check if data is available, polltime = 100ms ...
1
vote
1answer
88 views

2 instances of the same program broadcasting via UDPClient

I'm using UdpClient to broadcast my program location so a centralize computer can find it and start working with it. It works great, until 2 users on the same computer at the same time try to ...
0
votes
0answers
141 views

How does C# UdpClient.Receive work when broadcaster reboots?

I'm writing an application that needs to receive multicast data from a piece of hardware. I have it working fine. Occasionally, outside of the control of my application, the hardware that is ...
2
votes
1answer
292 views

Encoding.ASCII.GetString returning blank value (Only in windows Application)

I'm trying to create a windows application with Visual Studio 2012 but weird stuff seems to be happening... When I run the exact same code in a console app, it works fine but it seems that I can't ...
1
vote
1answer
235 views

How do I correctly set up my UdpClient to listen on the multicast address 239.255.255.250:1900 in C#

I am setting up a small local network with 3 laptops. My goal is to experiment with the UpNP protocol and have the laptops discover each other using UpNP. In order to do this, they need to be able ...
3
votes
1answer
145 views

Thousands of concurrent packets, ThreadPool vs BeginRead?

I'm running an application that has 5000 instances of the UdpClient class since I need to transmit packets concurrently on different ports. I'm currently using a System.Timers.Timer, which runs on ...
1
vote
1answer
170 views

Udpclient polling udp multicast address

i want to check if data is avaiable on the udp multicast address, the only mechanism i found was the Poll method. Setup: client = new UdpClient(localEp); client.JoinMulticastGroup(multicastAddr, ...
0
votes
1answer
87 views

Notify on leaving a multicast group

I set up a listener on a multicastgroup udpclient.JoinMulticastGroup(multicastaddress, localIpAddress); while(listeing) data = udpclient.receive(ref remoteep); Afaik i don't get informed when ...
-1
votes
1answer
82 views

client server for running a program in c++ [closed]

I am a beginner in networking, I want to do a project to move my arm robot in the server (it is mac) with my p5 glove in the client (it has os window) using client server udp with c++. In client site ...
1
vote
1answer
446 views

DatagramSocket cannot receive data from UdpClient

I am making an Win RT app that connects to a desktop app and they start to communicate in UDP and TCP. I have successfully implemented TCP communication in that I can send from Win RT to Desktop and ...
0
votes
1answer
177 views

Three way handshake to establish direct communication between two peers, getting issue

Basically below is the part of peer to peer to chat. I have established communication already from clienta to server and clientb to server. Now clienta request to server to try communication with ...
1
vote
1answer
192 views

UDP server connection gets reset, how to keep live to handle request from second client?

I need to have peer to peer chat between two client without having need of server. As a part of initial testing I am working on one UDP based server to listen one port to get client1 & client2 ...
0
votes
1answer
58 views

When transmitting data using UDP is it necessary to include the message length as part of the message?

I have a client who is looking to reduce the number of bytes transmitted over the wire to the absolute minimum. When creating a udpClient class and invoking the receive method, a byte array is ...
0
votes
1answer
261 views

UdpClient can't receive from DatagramSocket

I am making an application. server side works on desktop and client side works on Windows 8 (Metro App- .Net for Windows Store) here is my server code: var udpServer = new UdpClient(7800); ...
0
votes
1answer
107 views

UdpClient.EnableBroadcast value has no effect

I was just playing around with a UdpClient and noticed setting UdpClient.EnableBroadcast to true or false doesn't have any (side)effect, I am able to broadcast with it either way: using (UdpClient ...
1
vote
1answer
81 views

Performance benefit storing AsyncCallback in member variable against creating new one

I am using UdpClient (c++/cli), I start my listener using the obvious BeginReceive. System::Void CUdpTransmitter::StartListener() { ... m_UdpClient->BeginReceive ( gcnew ...
0
votes
0answers
72 views

how can I make client to get message from server without opening port and with using udpclient

With TCPListener and TCPclient I am able to setup a 2way connection using networkstream But with UDPclient I cannot use networkstream and I want to have this; client will connect to UDPServer and ...
0
votes
0answers
20 views

How to convert model to bytes and restore?

Here I have a model with three propertites: flag, localIp, localName, they are all string type: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ...

1 2 3 4