Tagged Questions
3
votes
1answer
103 views
Asynchronous TcpClient not reading all the data in time
The code below works if there's not a lot of data from the server, or if there's a lot data and I uncomment the Thread.Sleep(500) line. I however don't want to use the Thread.Sleep line, but if I ...
0
votes
1answer
221 views
C# TcpClient ReadAsync reading a large message
I have a C# TcpClient to read data asynchronously. The simplified code is as below:
public async Task StartReading(CancellationToken token)
{
// To fit the largest package
const int ...
0
votes
1answer
198 views
Asynchronous TCP server/client unreliable packets?
Alright so for my game, Ive set up a server / client peer to peer connection, to send positions and etc back and forth.
Although my messages arent actually sending that fast, and not reliably either. ...
0
votes
1answer
360 views
Asynchronous TCPClient C# messages arent sending?
basically What I need is a p2p connection, right now I have a asynchronous server and client which is communicating between each other via TcpClients. Problem is the server rarely detects incoming ...
0
votes
1answer
212 views
How can I make my TCP Socket Server Async?
I currently have made an all in one peer to peer 'chat' program. It currently uses a timer to receive messages, and a client to send them to other people running the program. I would really like to ...
1
vote
1answer
381 views
C# TcpClient losing packets
I'm having some issues when I really stress test my networking code. Essentially once the socket is set up it calls this:
NetworkStream networkStream = mClient.GetStream();
...
1
vote
0answers
88 views
Why are clients connecting so slow?
I am trying to make a program in witch multiply clients will connect to the server. But i have a problem because when i try to connect more than 1 client at the same time, it takes a "long time" to do ...
7
votes
1answer
2k views
TcpClient vs Socket when dealing with asynchronousy
This is not yet another TcpClient vs Socket.
TcpClient is a wrapper arround the Socket class to ease development, also exposing the underlying Socket.
still ...
On the MSDN library page for ...
1
vote
1answer
85 views
UI operations from TcpClient DataReadAsyncCallback
Is TcpClient DataReadAsyncCallback executes in the main UI thread?
I'm creating windows forms from that handler and after several calls and window displays application just terminates without any ...
0
votes
0answers
97 views
switch asynchronous socket to synchronus one
i have a client socket connection which connects a remote asynchronously like the following.
SocketAsyncEventArgs socketEventArgs = new SocketAsyncEventArgs();
socketEventArgs.Completed += new ...
0
votes
1answer
372 views
C# TCP Client error processing async message
I am having some trouble with a TCP Client , the service connects to the server and listens for messages, which are received and processed 90% of the time. After a bit of debugging I found that on ...
0
votes
2answers
675 views
Redirecting TCP NetworkStream traffic in a .NET socket server
I need to build a load balancer in C#.NET. I'll need to route requests based upon some criteria to an array of back end .NET Tcp socket servers.
What ways does .NET expose to redirect traffic? Is ...
2
votes
1answer
655 views
Issue to find out the TcpClient disconnected due to network lost
I am working on a TcpClient Asynchronous requesting WPF project. In which I have written some code when ever client gets disconnected with out network lost due to socket disconnected. Its working ...
1
vote
0answers
296 views
How to scan ports asynchronously?
I am trying to work out how to scan a range of ports very quickly but after few hours I'm ready to give up.
I have searched for results on the web but no matter what I do I can't scan the ports fast.
...
2
votes
4answers
352 views
Asynchronous components and WinForms
I'm currently writing a component to communicate with an Ethernet based device and am having to use asynchronous sockets. At times when I receive specific 'commands' from the device, I need to raise ...
4
votes
1answer
147 views
When to using async when dealing with TcpClients? [duplicate]
Possible Duplicate:
Difference between NetworkStream.Read() and NetworkStream.BeginRead()?
Messing with the TcpClient class a bit and I noticed the TcpClient.GetStream() class has both ...
0
votes
1answer
329 views
Asynchronous Socket Connection
Are there any fast way to learn Asynchronous socket tcp programming or are there any libraries available to utilize system.socket in a short amount of time?
My synchronous tcp client couldn't hold ...
1
vote
3answers
1k views
TcpClient.EndConnect throws NullReferenceException when socket is closed
I am trying to connect to my server with a TcpClient.BeginConnect / TcpClient.EndConnect combo. However, some things don't work as they should.
The scenario is as follows:
Call to the ...
1
vote
0answers
763 views
SslStream equivelent of TcpClient.Available?
Based on the advice of @Len-Holgate in this question, I'm asynchronously requesting 0-byte reads, and in the callback, accept bytes the avaialble bytes with synchronous reads, since I know the data is ...
0
votes
2answers
123 views
How to catch an exception thrown from an event?
I am porting TCPClient into Silverlight and I see that the BeginConnect can throw a SocketException somehow from the asynchronous process.
In silverlight there is a Completed event for the ...
3
votes
1answer
430 views
How do I continually monitor for new TCP clients?
I have a TCP server that continually monitors for new incoming clients asynchronously and adds them to a client list:
public class TcpServer
{
public List<TcpClient> ClientsList = new ...
7
votes
2answers
1k views
BeginReceive / BeginRead timeouts
I'm using a NetworkStream & TcpClient to asynchronously receive data using BeginRead. I need to apply a time-out to this operation, such that after a specified amount of time the read will be ...
0
votes
4answers
3k views
Should I always call TcpClient.EndConnect (even when connection fails?)
C# has several useful classes for networking tasks such as TcpClient and WebClient. Both have BeginX methods (BeginConnect and BeginGetResponse respectively) that according to MSDN should always be ...