I have an extremely strange bug. I have two applications that communicate over TCP/IP. Application A is the server, and application B is the client.
I\'m working on a small flash project for a web site. I\'ve coded my tcp-server on a windows service. Is it possible to put the tcp-server on a web service ? Or should I accept the tcp-connections whi
I\'m writing a simple HTTP server and learning about TIME_WAIT.How do real web servers in heavy environments handle requests from tho开发者_开发技巧usands of users without all the sockets getting stuc
When using a Socket class one is establishing a TCP connection to a server on some port, but on the server the ServerSocket is capable of handling multiple client connections for each accept request a
I\'m a Jr. Engineer hoping to seek some advice from all of the experienced people in here in regards to how to approach this.
I\'m working on an application that reads and writes binary data from and to a socket. So first I create a socket with TcpClient. But I\'m stuck on reading the data from the socket. Are there any code
This question already has answers here: HTTP packet reconstruction (6 answers) Closed 8 years ago. I am working on url tracker project where I have to track all sites visited by a user.
is there a way to bind multiple listening TCP sockets on the same {IP, port}? I know I can just open a socket, bind, fork and then listen in each of the processes. But I\'d like to do the same with se
I have build a basic .NET server-client infrastructure using TcpListener and SocketClient. It is multithreaded and asynchronious. The problem is, that the server crashes at some point when over 30 cli
This question already has an answer here: to read the packet of b开发者_运维百科ytes on client(client Socket) from server(ServerSocket) using java