0
votes
2answers
37 views

a single buffer to manage all tcp connections

imagine I have 60 tcp fds in my program. is it a good idea to consider one thread for each of tcp connections to read from them or it is tricky to maximize the os tcp buffer to read all packets from ...
1
vote
0answers
45 views

TLS Support in .Net SslStream

I am a beginner in networking with VB2010 and .Net4. To get things working, I am trying to write my own TCP Client, inherited from the one given by the .Net BCL, and extending it with some routines ...
0
votes
2answers
243 views

Close socket connection after receiving stream - java

I made a tcp server which takes a file name from the client and read the content of the file located on the server and then stream it back to the client. I also made a client to receive the file. My ...
0
votes
1answer
206 views

TcpClient error: No connection could be made because the target machine actively refuses it

I wrote a simple tcp/ip chat and it worked with the localhost IP(127.0.0.1) as well as connecting to another computer on the local network. Through the Internet (v4 IP address) it didn't work so I ...
4
votes
1answer
2k 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; ...
1
vote
1answer
170 views

Socket components TcpClient can use http proxy?

The TcpClient access site content, can use an HTTP proxy? Or use socket5 agents it?If you can, then, how to do?
0
votes
3answers
176 views

Do i need multiple streams and TCP clients to make a chat application in c#

i am using the following code on server for communication between the server and client TcpListener server = new TcpListener(IPAddress.Any, 9999); server.Start(); Console.WriteLine("Waiting for ...
2
votes
1answer
2k views

TCP client\server - client doesn't always read

Client Code: TcpClient client = new TcpClient(); NetworkStream ns; private void Form1_Load(object sender, EventArgs e) { try { client.Connect("127.0.0.1", 560); ns = ...
0
votes
4answers
516 views

NetworkStream doesn't support seek operations

I'm creating simple proxy server but I faced a strange situation, I've following code : var clientRequestStream = _tcpClient.GetStream(); var requestHeader = clientRequestStream.GetUtf8String(); ...
-4
votes
1answer
85 views

How to do C# networking ? is there any books related to it? [closed]

HI guys i want try some of my programs in the internet so i need a help right here, is there any kind of book that can help me in this regard. If anyone know please write the name of the book along ...
0
votes
1answer
759 views

How to formulate IP forwarding rule using iptables

I have two Systems A and B. A is a TCP Client and sends a message to TCP Server on B. ------------------ -------------------------- System A System B ...
0
votes
2answers
2k views

Sending a file using TCPClient and NetworkStream in C#

I've been trying to send a file from a client to a server application using the TCPClient class in C#. Before I send the actual data, I send some additional information like the exact file size and ...
0
votes
1answer
73 views

Assuming responsibility for Socket from TcpClient

I want to use TcpClient for simplicity of connecting, however once connected I want to hand off responsibility of the Socket to a generic data processing class (it does not care if it is UDP/TCP). Is ...
0
votes
1answer
197 views

Whats faster sending multiple small messages or less longer messages with TCP Sockets

I can find any documentatin anywhere and would like to know what would be the best method of send multiple messages as fast as possible. for example if I had 300 devices recieivng messages from one ...
0
votes
1answer
846 views

C# WinForms (TcpClient) - Unable to read/write data from/to the transport connection: An existing connection was forcibly closed by the remote host

I realise there are plenty of articles on this but am struggling to find an explanation for this specific problem. The server is an Asterisk PBX server which constantly writes call data to the ...
0
votes
1answer
293 views

JAVA server and .Net client programming

I am doing communication with Java server. One application which is developed in java and it runs on some ip,port. e.g. 192.168.1.1 port 9090 No wi want to communicate to that server using my ASp .NET ...
1
vote
5answers
3k views

No connection could be made because the target machine actively refused it--Socket C#

Hi guys i'm trying to build a server-client app in c#.it is working on local but i want to work it through internet bu i have this error when i entered my ip: No connection could be made because the ...
0
votes
1answer
500 views

Developing IP messenger in VB.Net

I want to develop a Ip messenger app in VB.Net for all the user connected in LAN. I am able to send message to user according to IP Address. I want a functionality to list all the user which are ...
2
votes
1answer
755 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 ...
1
vote
1answer
403 views

Why epoll_wait(), get returned and TCP connect time out in 5s~10s

I create a non-blocking socket, and then use the epoll to manange the socket. I do not set a timeout on epoll_wait. But I find that the epoll returned in 5s to 10s, then I check with the getsockopt on ...
0
votes
1answer
80 views

Best convention of tcp-messaging

I'am using this message convetion : %total_msg_length%|%msg_body% to recieve string data over tcp-sockets (python/pyqt). Is this is the good convetion, or should i try something else?
1
vote
1answer
244 views

System.Net.DnsPermission Error in C#

im doing client and server socket communication in c# but i got this error.. Error: Request for the permission of type 'System.Net.DnsPermission, System, Version=2.0.0.0, Culture=neutral, ...
1
vote
2answers
323 views

Sending multiple data in TCPSocket

I'm trying to create a chat with file transfer application using TCPSocket and here is my code.. SENDER: public void sendData(string message) { StreamWriter streamWriter = new ...
2
votes
1answer
824 views

Is TCP Communication a 2-way communication?

This is really a newbie question regarding TCP Communication. Is TCP Communication a 2-way communication? Let me give a scenario: One program is listening to a TCP port, say port 25. An external ...
3
votes
1answer
460 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 ...
3
votes
2answers
485 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 ...
1
vote
3answers
626 views

Encoding.ASCII.GetString() Problem

this is my previous post in VB.NET but seems i still got the same problem in c# and i cannot solve it.. i dont know why the sent string "kamote" to server and the string received "kamote" from server ...
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 ...
1
vote
2answers
285 views

Ignoring incoming data in TcpClient / NetworkStream

For communication with some third-party software, I need to establish an unidirectional connection over TCP. My software only needs to send data to the other side and never will read any data. ...
4
votes
2answers
697 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 ...
2
votes
2answers
1k views

Multiple simultaneous tcp client connections for performace test

Hi i need to create multiple TCP connections simultaneously to some custom TCP-server application for its performance testing. I know a lot of such for Web (i.e. curl-loader based on libcurl), but I ...
6
votes
4answers
33k 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, ...
1
vote
2answers
2k views

read xml data over tcp

i'm developing an application that is listening to tcp to get some xml data coming from other devices. i'm use sniffing c# code, and i can sniff all the packets. my problem is that in every packet i ...
0
votes
1answer
138 views

Network error handling in silverlight 3

We are writting silverlight3 application, which use Tcp connction. Our project use client server architecture. Client part is silverlight application, and server part is winform application. We use ...
3
votes
1answer
536 views

Searching for patterns to create a TCP Connection Pool for high performance messaging

I'm creating a new Client / Server application in C# and expect to have a fairly high rate of connections. That made me think of database connection pools which help mitigate the expense of creating ...
8
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. ...
3
votes
1answer
485 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 ...
1
vote
3answers
1k views

Creating an 802.11 transmitter and reading the data from a WiFi router

There are 2 parts to this question. Feel free just to give me URLs to articles or suggest books, too, as the answer is probably a bit in depth for a quick forum response. 1) I need to sense the ...