.NET Framework class, providing client connections for TCP network services.

learn more… | top users | synonyms

56
votes
14answers
66k 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 ...
11
votes
3answers
10k 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(); ...
10
votes
4answers
9k 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 ...
8
votes
2answers
268 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?
7
votes
5answers
974 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 ...
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 ...
7
votes
5answers
5k 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
5k 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
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 ...
6
votes
2answers
13k 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: ...
6
votes
2answers
3k 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 ...
6
votes
4answers
3k views

Unable to connect from remote machine

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; ...
6
votes
4answers
31k 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, ...
6
votes
2answers
7k 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
2answers
3k 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 ...
5
votes
1answer
2k 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 ...
5
votes
2answers
232 views

Sending a file to a Dynamic port by a TCP Protocol

I am working with an application that receives a file by a TCP protocol, the application processes the file and then sends it by the same protocol, i am receiving the file without problems, my problem ...
4
votes
5answers
3k 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
3answers
292 views

Socket programming- client server principles

I'm embarrassed to even ask this question, but after an exhausting search in google (starting to have MSDN...), I've decided to post it: Just now started learning client-server programming (using ...
4
votes
1answer
2k 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?
4
votes
5answers
442 views

TcpClient.Close() works only with Thread.Sleep()

Good day! I have a very strange problem. I have simple server that gets string from client and prints it on screen. I also have simple client, sending data and closing: static void Main() { ...
4
votes
2answers
3k views

C# - TcpClient - Detecting end of stream?

I am trying to interface an ancient network camera to my computer and I am stuck at a very fundamental problem -- detecting the end of stream. I am using TcpClient to communicate with the camera and ...
4
votes
1answer
2k views

Specify the outgoing IP address to use with TCPClient / Socket in C#

I've a server with several IP Addresses assigned to the network adapter. On that server is a client app to connect to another server app via TCPClient. For all outgoing communications my servers ...
4
votes
5answers
1k 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. ...
4
votes
2answers
677 views

How to check if a server is listening without exception handling

I'm working on two apps that connect to eachother using TCP. At one point, one of them is trying to connect using a TcpClient, but the other app is not guaranteed to have started listening yet (using ...
4
votes
1answer
868 views

Which timeout value determins how long will the idle TCP connection will be closed?

After the connection has been established, and the two sides have no communication, which timeout value determines the idle connection be closed?
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 ...
4
votes
1answer
2k 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
2answers
4k views

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
1answer
2k 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.
4
votes
1answer
569 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
1answer
379 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 ...
4
votes
1answer
1k views

How to use TCP client/listener in multithreaded c#?

I have written this code for my server: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Net; ...
4
votes
2answers
559 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 ...
4
votes
4answers
1k 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 ...
3
votes
2answers
1k views

Telnet IAC command answering

I'm trying to negociate a telnet connection with a socket. The socket is working, the server is telling me that thing: ÿýÿýÿûÿû login: The ÿýÿýÿûÿû means 255 253 1 255 253 31 255 251 1 255 251 3 ...
3
votes
1answer
5k views

How to fix TcpClient Ip Header Bad Checksum

I'm using System.Net.Sockets.TcpClient class but whenever I send custom packet over the network I'm seeing bad checksum on my wireshark capture. How can I fix it?
3
votes
2answers
464 views

TCP/IP basics: Destination port relevance

Ok this is kind of embarassing but I just have a rather "noob" question. In a client server TCP communications, where my system is a client accessing a remote server at say Port XX, isnt the client ...
3
votes
3answers
701 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
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
4answers
489 views

TCPClient stream irregularities?

I have a TCPClient that creates a stream that I read from when DataAvailable. Every 20 seconds that !DataAvailable I ping the socket with an ACK message to keep the stream from closing. But I seem ...
3
votes
3answers
953 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 ...
3
votes
3answers
862 views

How to determine if an HTTP response is complete

I am working on building a simple proxy which will log certain requests which are passed through it. The proxy does not need to interfere with the traffic being passed through it (at this point in the ...
3
votes
1answer
111 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 ...
3
votes
1answer
282 views

Stream video from Xbox Kinect over network

I am trying to stream a video from an Xbox Kinect over LAN. I wrote a socket class that will send at about 25 mega bits per second with a good connection and about 1 mega bit per second with a bad ...
3
votes
1answer
288 views

TcpClient(IPEndPoint localEP), choosing correct localEp?

I'm driving myself crazy. Microsoft provides an awesome way of binding a local network adaptor and port for a new TCPClient by using the constructor: TcpClient newClient = new TcpClient(IPEndPoint ...
3
votes
1answer
899 views

NetworkStream is reading data that should not be there

I have a problem with the NetworkStream reading data from the socket buffer that should not be there. I am sending very big buffers by the way. Right now I have just been testing on the localhost. ...
3
votes
2answers
539 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
2answers
329 views

How to know if it is memory leak or not if Mem Usage in Task Manager keep increasing

I wrote a small Server class which basically is a TcpListener wrapper and ThreadPool thread spawner. The threads run Server::ProcessMessage() which does some work sending messages to and fro and then ...
3
votes
5answers
3k views

C# Why doesn't “Flush” force the bytes down the network stream?

I have a project where I'm trying to send a serialized object to the server, then wait for an "OK" or "ERROR" message to come back. I seem to be having a similar problem to th poster of : TcpClient ...

1 2 3 4 5 15