Tagged Questions
.NET Framework class, providing client connections for TCP network services.
35
votes
15answers
42k views
In C#, how to check if a TCP port is available?
In C# to use a TcpClient or generally to connect to a socket how can I first check if a certain port is free on my machine?
more info:
This is the code I use:
TcpClient c;
//I want to check here if ...
9
votes
4answers
4k views
Stopping a TcpListener after calling BeginAcceptTcpClient
I have this code...
internal static void Start()
{
TcpListener listenerSocket = new TcpListener(IPAddress.Any, 32599);
listenerSocket.Start();
listenerSocket.BeginAcceptTcpClient(new ...
7
votes
5answers
2k views
TcpListener is queuing connections faster than I can clear them
As I understand it, TcpListener will queue connections once you call Start(). Each time you call AcceptTcpClient (or BeginAcceptTcpClient), it will dequeue one item from the queue.
If we load test ...
7
votes
3answers
2k views
How to use Tor control protocol in C#?
I'm trying to send commands to the Tor control port programmatically to make it refresh the chain. I haven't been able to find any examples in C#, and my solution's not working. The request times out. ...
7
votes
2answers
166 views
How can TcpClient implement IDisposable and not have a public Dispose method?
Just as the title says:
How can TcpClient implement IDisposable and not have a public Dispose method?
6
votes
1answer
493 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 ...
6
votes
2answers
2k views
Receving and sending data in C#
Im still trying to improve a little bit what I wrote before.
Now I faced a problem with receiving data. I have a program which I use to send string using tcpClient to a program in which Im listening ...
5
votes
4answers
1k views
What networking components are available for FireMonkey iOS apps?
I want to write an iPhone / iPad app that needs to retrieve data from a socket connection, or from a webpage (http, webservice, anything). It seems that all of the FireMonkey internet and Indy ...
5
votes
3answers
4k views
How to check if TcpClient Connection is closed?
I'm playing around with the TcpClient and I'm trying to figure out how to make the Connected property say false when a connection is dropped.
I tried doing
NetworkStream ns = client.GetStream();
...
4
votes
2answers
148 views
How to use SSL in TcpClient class
In the .NET framework there is a class TcpClient to retrieve emails from an email server. The TcpClient class has 4 constructors to connect with the server which take at most two parameters. It works ...
4
votes
1answer
111 views
Tuning buffer length for reading small data from NetworkStream
How to fine tune the bufferSize while reading small data from the TcpClient/NetworkStrem?
If the bufferSize is big like 1024, 4096 the Read/BeginRead blocks.
If I set the bufferSize to 16, 32 it works ...
4
votes
3answers
116 views
Does one need to close both NetworkStream and TcpClient, or just TcpClient?
I'm reading this page and noticed this:
Calling this method will eventually result in the close of the associated Socket and will also close the associated NetworkStream that is used to send and ...
4
votes
3answers
153 views
C# client/server Question
I'm incredibly confused as to what is going on here. I've been putting in break points and I just can't seem to understand. Basically, I have a client and a server. I want the client to send two ...
4
votes
1answer
79 views
When to using async when dealing with TcpClients? [closed]
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 ...
4
votes
1answer
478 views
Faster way to communicate using TcpClient?
I'm writing a client/server application in C#, and it's going great. For now, everything works and it's all pretty robust. My problem is that I run into some delays when sending packets across the ...
4
votes
2answers
4k views
How do I get client ip address using TcpClient?
I am using TcpClient to listen on a port for requests. When the requests come in from the client I want to know the client ip making the request.
I've tried:
...
4
votes
1answer
884 views
How to find cause and of the SocketException with message that an established connection was aborted by the software in your host machine?
I know the similar question may have been asked many times, but I want to represent the behavior I'm seeing and find if somebody can help predict the cause of this.
I am writing a windows service ...
4
votes
5answers
2k views
C# NetworkStream.Read oddity
Can anyone point out the flaw in this code? I'm retrieving some HTML with TcpClient. NetworkStream.Read() never seems to finish when talking to an IIS server. If I go use the Fiddler proxy instead, it ...
4
votes
1answer
2k views
C#: Alternative to NetworkStream.Read that indicates remote host has closed the connection?
With regards to handling a TCP/IP connection using the TcpClient class, is there an alternative for checking whether the remote host has closed the connection other than waiting for the ...
4
votes
4answers
1k views
Problem with TCPListener
I have some kind of problem and I can't check this at home if its working or not.
Here is the code
using System;
using System.Net;
using System.Net.Sockets;
using System.Threading;
using System.IO;
...
3
votes
2answers
79 views
TcpClient.Available Optimizations
Is there any faster way to tell if the client has data available? I'm not saying it is slow to use TcpClient.Available, but I am curious to know if it is the fastest way.
3
votes
1answer
87 views
Why does waiting on this Task for 1022 milliseconds work fine but 1023 causes an AggregateException?
Trying to implement a timeout parameter for connecting to a server but I'm not having much luck. Here's my code:
client = new TcpClient();
Task task = Task.Factory.FromAsync(client.BeginConnect, ...
3
votes
1answer
122 views
Reliably reconnect to the server TCPClient C#
I am having trouble reconnection a TCPClient (actual class name from C#) to its server, is there a well defined way of doing this? Do I need to manage the tcp connection at the server as well if a ...
3
votes
1answer
88 views
Timeout or try-catch for connecting to a server? (C# WinForms)
Which code is preferable to handling failed connections to a server?
Something like this:
Or this kind of code at the beginning of the async callback for TcpClient.BeginConnect:
try
{
...
3
votes
1answer
54 views
Make multiple HTTP requests/responses when 4xx response loses the connection
I am working on a client for a REST API. The server returns 4xx responses as a matter of course. At the moment, I am using HttpWebRequest/HttpWebResponse to make the calls. The problem is that ...
3
votes
3answers
186 views
Simple tcp client examples in emacs elisp?
I'm trying to learn emacs elisp and trying to write a little program to connect to a TCP/IP port and process records that come back. In one case I'll be parsing CSV data and in the another, I'll be ...
3
votes
5answers
792 views
Why does Java read random amounts from a socket but not the whole message?
I am working on a project and have a question about Java sockets. The source file which can be found here.
After successfully transmitting the file size in plain text I need to transfer binary data. ...
3
votes
0answers
84 views
Has any one been able to consume fast-path update PDUs in an RDP client?
I'm working on an RDP client with a friend as a pet project and we're trying to get fast-path updates to work since rdesktop hasn't supported this so far. We're able to process around 20-21 fast-path ...
3
votes
4answers
5k views
TcpClient send data and receive data over network
I am a newbie on socket programming. I need to develop a service that will connect to a TCP server. Main tasks are reading incoming messages and also sending commands to the server in ten minutes, ...
3
votes
1answer
214 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 ...
3
votes
2answers
621 views
Proper implementation of C# TCP reconnecting client
I have to write a TCP Client that will have ability to reconnect to server. The server can be unavailable due to poor network connection quality or some maintenance issues. I'm searching for quality ...
3
votes
5answers
518 views
What happens if you break out of a Lock() statement?
I'm writing a program which listens to an incoming TcpClient and handles data when it arrives. The Listen() method is run on a separate thread within the component, so it needs to be threadsafe. If I ...
3
votes
1answer
348 views
There's a black hole in my server (TcpClient, TcpListener)
I'm trying to build a server that will receive files sent by clients over a network. If the client decides to send one file at a time, there's no problem, I get the file as I expected, but if it tries ...
3
votes
2answers
172 views
Do I have to store a TcpClient even though I only care about its stream?
A new instance of a TcpClient connects to a remote host. Its NetworkStream is retrieved and stored. Do I have to store the TcpClient itself as well to make sure it is not garbage collected?
In case ...
3
votes
4answers
315 views
Is it expensive to do a WHOIS lookup using TcpClient.Connect() in C#?
A customer has asked that we do a dynamic whois lookup on the homepage of their ASP.NET site, based on the IP of the user accessing the site.
The implementation would be something like what's ...
3
votes
1answer
280 views
Chat system with one or two ways?
I'm trying con build a simple chat client/software (whole in on executable) wich start listen from the start on the port 5900 and when a client connect to that port the chat is established.
The ...
3
votes
1answer
1k views
Why won't TcpClient.Write throw an exception when writing to a closed connection (the first time)?
I have a simple program that uses TcpClient and SslStream to write data to a socket.
To test it I ran the program over night so my program would open the connection, write nothing for a long time, ...
3
votes
1answer
1k views
TcpListener: How can I detect a client disconnect?
How can I detect when a client disconnects from the TcpListener ?
Each of my clients is handled in a separate thread.
3
votes
1answer
695 views
What is the best way to wait for a TcpClient data to become available in .NET?
while (TcpClient.Client.Available == 0)
{
Thread.Sleep(5);
}
There is a better way to do this?
3
votes
2answers
1k views
Is it possible to convert between Socket and TcpClient objects?
Here's another C#/.NET question based merely on curiousity more than an immediate need ...
If you had a Socket instance and you wanted to wrap it in the higher-level TcpClient class, is that possible ...
2
votes
1answer
92 views
How do i send an email when i already have it as a string
Effectively i'm trying to send some template emails so that i can test a few components that handle reading from mailboxes.
I could just load up outlook and send a couple of emails but i'm looking to ...
2
votes
1answer
93 views
Need a more graceful pattern for shutting down TcpListener
I have a TcpListener that when shutting down causes all in-progress clients to throw the below exception when they try and call EndAcceptTcpClient. Is there a more graceful pattern I can use to allow ...
2
votes
4answers
93 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 ...
2
votes
4answers
57 views
CRC checking done automatically on Tcp/Ip?
I have question to ask.
I wonder, while sending data with TcpClient, is there any sort of CRC
checking algorithm that works automatically? Or I have to implement my own algorithm and resend the data ...
2
votes
1answer
57 views
AcceptTcpClient() and class based on TcpClient
I needed a class that would have everything TcpClient has + a couple extra fields so I created a class based on TcpClient:
public class MyClient: TcpClient
{
public string winUser;
public ...
2
votes
0answers
67 views
TcpClient connect fails with IPv6Any
The problem is, the following code works well if IPAddress.Any was given as a parameter, but throws an error if `IPAddress.IPv6Any is used.
I receive error #10057
Socket is not connected.
A ...
2
votes
1answer
90 views
C# - Socket to log on to Firewall
I wrote an app to automatically connect to our different Firewalls. All of them work with the same frontend. We telnet to the IP and they give the message LOGIN or LOGOUT and ask for a username or ...
2
votes
3answers
40 views
What is the best way to code a Java TCP client (C# server)?
I have a server written in C# and need to talk to it from Java 1.6. I need to connect to the server, maintain the connection, and send messages in both directions. The messages are an int (length of ...
2
votes
1answer
74 views
Configure socket ACK timeout?
Is there a way to configure the timeout in which a socket expects to receive an ACK for sent data before it decides that the connection has failed?
I'm aware this can be done at the application level ...
2
votes
2answers
169 views
How to restart a task elegantly?
So I have something like this:
Task.Factory.FromAsync<TcpClient>(tcpListener.BeginAcceptTcpClient, tcpListener.EndAcceptTcpClient, tcpListener).ContinueWith(ConnectionAccepted);
private void ...