Tagged Questions
The tcplistener tag has no wiki summary.
13
votes
7answers
13k views
Proper way to stop TcpListener
I am currently using TcpListener to address incoming connections, each of which are given a thread for handling the communication and then shutdown that single connection. Code looks as follows:
...
10
votes
2answers
1k views
C# send image over HTTP
I have a small HTTP-Server here written in C# and until now I only needed to send raw text back to the sender. But now I have to send a JPG-Image and I dont unterstand how.
this is what I have now:
...
10
votes
5answers
9k views
How to spread tcplistener incoming connections over threads in .NET?
When using the Net.Sockets.TcpListener, what is the best way to handle incoming connections (.AcceptSocket) in seperate threads?
The idea is to start a new thread when a new incoming connection is ...
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 ...
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 ...
4
votes
2answers
75 views
Thread and TcpListener in C#
I need to write some code that uses TcpListener. The object that using the TcpListener has 3 possibilities: Listen, Stop Listen, Send message. This is how my code looks:
public class someClass
{
...
4
votes
1answer
282 views
How to read HTTP response with jQuery ajax from C# TcpListener?
I have created server with TcpListener, which responds to every request as a dummy HTTP. On the client side I have used jQuery Ajax to make a request to this server. Server gets successul request and ...
4
votes
2answers
413 views
Can a WCF Service replace the functionality of TCPListener?
I have a TCPListener based server application which listens for clients on a single specific port. The clients connect, send some xml, get some xml back as a response and then disconnect.
Is it at ...
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
3answers
136 views
Tcplistener randomly resetting the connection
I'm playing around with a simple webserver written in F#. As I have noticed, if I hit refresh in Firefox, after some tries, I get an error page saying:
The connection was reset
The connection ...
3
votes
4answers
514 views
TCP Socket Connections
I have a windows service which, amongst other things, listens for incoming data from a remote device using the .NET System.Net.Sockets library. The example below only has one remote device pushing ...
3
votes
1answer
300 views
Is correct this pattern for an asynchronous TCP listener?
I was wondering if I'm doing right in an application I'm building. The app has to receive incoming TCP connections, and use a thread per call, so the server can answer multiple calls in parallel.
...
3
votes
2answers
406 views
How can I forcibly close a TcpListener
I have a service which communicates through tcpListener.
Problem is when the user restarts the service - an "Address already in use" exception is thrown, and the service cannot be started for a couple ...
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
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.
2
votes
1answer
94 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
3answers
152 views
latency in netty due to passing requests from boss thread to worker thread?
I have some questions about Netty (Server Side), TCP/IP applications;
I am wondering if there can be latency because of netty (due to missing configuration etc.) while passing the request from boss ...
2
votes
1answer
77 views
Error in asynchronous read from the NetworkStream
I have make an application to communicate with an IP Camera. That is configured to make connection on a predefined address. And TCP Listener is running on that address and accepts connection from ...
2
votes
1answer
141 views
tcplistener does not start
I am using a TcpListener in a Windows Forms application; which has a 'Start' button that starts the TcpListener. However, when I click the start button the following exception is thrown:
The ...
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 ...
2
votes
1answer
253 views
Setup a TCP listener in PHP
We're using a system at the moment that takes an incoming JSON request over TCP and responds using JSON too. Currently I've set up my socket like so in PHP:
$socket = fsockopen($host, $port, $errno, ...
2
votes
2answers
121 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 ...
2
votes
1answer
244 views
TCP listener cuts message at 1024 bytes
Problem just started on client side. Here is my code where I receive TCP/IP message. On my local PC this listener receives many K no problem. I tried to increase buffer size but on client site they ...
2
votes
5answers
104 views
Best approach in communicating with processeses
I'm going to create an application that will act as some sort of task manager. For stability reasons I will not use threads but processes instead. I have to deal with several third party libraries ...
2
votes
1answer
495 views
Where can I find a good tutorial for using the BeginAcceptTcpClient method of a TcpListener?
I'm confused on how to use BeginAcceptTcpClient and how to set up my AsyncCallback and the state object. MSDN doesn't provide a comprehensive enough example for using this for me. How do you get the ...
2
votes
2answers
1k views
SocketException preventing use of C# TCPListener in Windows Service
I have a Windows Service that does the following when started. When running via a Console application it works fine, but once I put in a Windows Service I get the below exception. Here is what I have ...
2
votes
4answers
828 views
~1 second TcpListener Pending()/AcceptTcpClient() lag
Probably just watch this video: http://screencast.com/t/OWE1OWVkO
As you see, the delay between a connection being initiated (via telnet or firefox) and my program first getting word of it.
Here's ...
2
votes
2answers
283 views
Help with windows TCP Port communication
I'm new to understanding how interprocess communication works. I"m working with two applications on my localmachine, a Source Application and a Server Application. The Source application broadcasts ...
2
votes
2answers
843 views
How can I send data with a TcpListener, and wait for the response?
I have the following code:
using (TcpClient client = new TcpClient())
{
client.Connect(host, port);
using (SslStream stream = new SslStream(client.GetStream(), true))
{
...
2
votes
2answers
2k views
How can I bind TCPListener to an external IP address?
I have a client/server style application which communicates using WCF which all works great. One function of the application is to get files from client machines onto the server (Central Control).
...
2
votes
3answers
1k views
Windows Listener Service
How do I write a windows service in c# that listens for tcp connections and processes these connections? The problem is that I want a better method than to "block" in the main thread e.g.
...
2
votes
1answer
2k views
TcpListener: Listen on every address, including GPRS IP address
We have a simple piece of legacy software with which we need to
communicate using TCP/IP over port 15001. We need to listen on port 15001
for the legacy software to make a connection and then read ...
1
vote
1answer
39 views
Stop TCP Listener
When I stop my TCP Listener by the Stop command, I always get an error because I use BeginAcceptTcpClient to accept the clients. How can I stop a listener properly?
1
vote
1answer
47 views
TCPListener Not Accepting Connection
I'm having an issue with a TCPListener. I have created this code below and it works with a test application, but I can't get it to receive the connection from the production box. In the image below ...
1
vote
0answers
52 views
Minor issue with TCPListener in C#
The explanation of my problem is a bit complicated, so bear with the long explanation:
1) The C# program is a utility to support a hardware box, which, among other things, has an FPGA which makes a ...
1
vote
3answers
131 views
Serializing object ready to send over TCPClient Stream
I've got a server and client set up using TcpListener and TcpClient.
I want to send an object to my server application for processing.
I've discovered the using System.Runtime.Serialization and the ...
1
vote
1answer
91 views
Can I get TCP/IP packet before it was sent?
There is a client and a server applications running on the same machine.
They use asynchronous communication with TcpClient and TcpListener.
Server application do some data processing in a background ...
1
vote
1answer
282 views
How do I write a scalable socket server using C# 4.0? [closed]
I want to write a simple socket server, however I'd like it to be vertically scalable, for example, not creating a thread per connection or very long running tasks, which may consume all threads.
...
1
vote
1answer
169 views
Send server multiple messages? C#
I have a quick and dirty question. So as it stands, i have two clients and a server running. I can communicate messages from the clients to the server without any problem. my problem appears when i ...
1
vote
2answers
77 views
Server/client sockets
Ok so I am new to socket programing and I'm making a game that is going to run from a server. I am going to try to be able to get a hundred clients to run off my server. Should I make one listener ...
1
vote
1answer
160 views
For TCPListener server, Should i go for web service or windows service?
I have to develop a service which will continuously listen for broadcasted messages over GPRS through TCPListener.
What project type should I use, Windows Service or Web Service?
If possible could ...
1
vote
2answers
294 views
Negotiating a WebSocket in C# (Chrome connecting to Unity C# TCP Client)
I've been trying to setup a Unity3D component which negotiates a WebSocket Connection with a Javascript Client.
I have a threaded TCPListener (c#) which handles the HTTP request and attempts to ...
1
vote
4answers
197 views
Best way to accept multiple tcp clients?
I have a client/server infrastructure. At present they use a TcpClient and TcpListener to send a receive data between all the clients and server.
What I currently do is when data is received (on ...
1
vote
1answer
387 views
How to handle TCPListener “An existing connection was forcibly closed by the remote host”
I have a tcp server that uses TCPListener and the async method BeginAcceptTCPClient:
Imports System.Net.Sockets
Imports System.Threading
Imports System.Net
Public Class TCPServer
Private mPort ...
1
vote
2answers
315 views
How do I timeout a recv() function in c++?
I have a program running on a server communicating with another program running on the client. They both send data and files back and forth.
I notice that whenever there is a socHandler.read() ...
1
vote
1answer
294 views
HttpWebRequest using Socks5 Proxies
I realize that you can use a Socks5 proxy with WebProxy. That being said, what I am trying to do is this:
Open Up TCPListener -> Create request with HttpWebRequest that sends request to TCPListener ...
1
vote
1answer
151 views
How to handle multiple TCP clients for communication
I'm developing multi client TCP/IP server application that may receive some commands from different clients and on the basis of these commands the server would perform some actions and send back the ...
1
vote
0answers
133 views
Adding send option to vb.net listener
I have the following code which listens and evaluates strings received, but I now need to add the option of sending pre-defined strings back to the source on a button click.
Any help or a pointer of ...
1
vote
1answer
310 views
TCPListener problem — C# .Net CF 3.5
I have a windows mobile 6 application that is using TcpListener to start a server and I am unable to get any external connections to be able to connect to the server. The windows mobile device is able ...
1
vote
0answers
141 views
how can i use WCF instead of manual c# using tcplistenr?
i have the following code and was wondering if there is a benefit to moving this to WCF?
basically i am listening for smtp messages over some port and use thread pooling to parse each tcp connection ...