Tagged Questions

A tcp server uses raw tcp sockets to communicate with its client (usually without using a higher level protocol such as HTTP or IMAP).

learn more… | top users | synonyms

4
votes
1answer
479 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
1k views

Twisted: tcp server with push producer example?

I want to put together simple TCP server using Python and Twisted. The server starts up and waits for connection - I already have client - non-python application. Once connection is made server ...
3
votes
1answer
288 views

Event Listener in PHP

I want my web server to notify me through a php page when an event occurs at another TCP server, to which the PHP page has successfully connected via a socket. The event is like the TCP server wants ...
3
votes
3answers
2k views

Ruby TCPServer sockets

Maybe I've gotten my sockets programming way mixed up, but shouldn't something like this work? srv = TCPServer.open(3333) client = srv.accept data = "" while (tmp = client.recv(10)) data += tmp ...
2
votes
1answer
205 views

.NET TCP Server Dropping Connections

A while back I wrote a little application to implement a TCP Server, but as a newbie to C# .NET I just followed a tutorial. The authorization part of it works fine, but due to following the tutorial ...
2
votes
2answers
207 views

How to send a “hello” to server and reply a “hi”?

With my code I can read a message on the server and write from the client. But I am not being able to write a response from the server and read in the client. The code on the client var cli = new ...
2
votes
4answers
1k views

How to track number of clients with Indy TIdTCPServer

I want to know the number of current client connections to an Indy 9 TIdTCPServer (on Delphi 2007) I can't seem to find a property that gives this. I've tried incrementing/decrementing a counter on ...
2
votes
3answers
348 views

Is there any c++ tcp server on linux?

I want to develop one no-blocking tcp server with c++, is there any open source project like Twisted ?
2
votes
3answers
202 views

TCP Server to push data to a Web Browser

I have a TCP server, which is connected to a web page via a Web browser. It is easy to send a request to the TCP server by the web page via the Web Browser, but is there a way that TCP server can push ...
1
vote
2answers
43 views

Reading/Writing is not working in my TCP code

I have a basic TCP client/server program. I have a method in both the client and the server that reads and writes. It works perfectly the first time I run it, but when it runs again (it's in a ...
1
vote
1answer
113 views

Sanding data from a C# TCP server to connected client outside of the listening thread

I am writing a simple Tcp server in Unity and have my Flash application connects to it. I found a great tutorial on threaded Tcp server online, and my flash app connects to it nicely. However, I am ...
1
vote
1answer
200 views

Simple HTTP server in Ruby using TCPServer

For a school assignment, I am trying to create a simple HTTP server using Ruby and the sockets library. Right now, I can get it to respond to any connection with a simple hello: require 'socket' ...
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
609 views

About TCPClient receive data from TCPServer problem

Hello everyone~ I have a problem to solve~ I have created a server that every one can connect to this server. The function of The server is in order to transfer message from one client to another ...
1
vote
2answers
881 views

Start a TCPServer with ThreadingMixIn again in code directly after shutting it down. (Gives `Address already in use`)

I try to program a TCPServer with threads (ThreadingMixIn) in Python. The problem is that I can't shut it down properly as I get the socket.error: [Errno 48] Address already in use when I try to run ...
1
vote
1answer
86 views

Is it possible to have non blocking server and blocked I/O client communicate?

I was just wondering, is it possible to have have two sockets that communicate to each other, and one is using blocked I/O and another is using non blocked I/O?
1
vote
5answers
134 views

How you pass path from client to server?

Hello i am trying to make a TCP client/server that i want these things. The client will give the filename or the path of filename of a file. The server will find that file and give these details: ...
1
vote
1answer
107 views

How to bypass a Proxy Server when needed?

I setup a proxy server in my local machine for a testing purpose, in which I request for a web page which is constantly being updated via a back end TCP server. But since the proxy is caching the web ...
1
vote
2answers
769 views

SocketServer.ThreadingTCPServer - Cannot bind to address after program restart

As a follow-up to cannot-bind-to-address-after-socket-program-crashes, I was receiving this error after my program was restarted: socket.error: [Errno 98] Address already in use In this ...
1
vote
3answers
374 views

TCP Server and MemoryStreams/ByteArrays

I've got a TCP server written in C# that processes POST data sent to it. Currently it works fine unless a large amount of data (i.e. greater than 1GB) is sent to it then it runs out of memory (I store ...
1
vote
2answers
520 views

How to test a TCP server implementation?

I have written a TCP server implementation using which I created an application which works as TCP echo service. Now I want to test this echo server in terms of How many connections it can handle ...
0
votes
0answers
17 views

how to serialize an object using TCPServer inside?

In an effort to speedup frequent repeated runs of a particular script in my chain, I started serializing to disk custom objects that otherwise take too much time to create aggregately. Using built-in ...
0
votes
1answer
29 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?
0
votes
0answers
21 views

Receiving Intellitrac X1 GPS data

I have developed a TCP server for getting GPS trackers data. It works fine for Redview devices. When I test an Intellitrac X1 device, it send the following data:- ·°☺ ü3< ·°☻ ü3< ·°♥ ü3< ...
0
votes
1answer
109 views

Indy 10 problems with reading and writing streams

I am trying to exchange data between a IdTCPServer and an IdTCPClient using a collection that I convert to a stream before I send it over the network. Unfortunately, no matter how I try, I can't seem ...
0
votes
2answers
96 views

tcp socket server to test html5websocket

Which is best tcp socket server to testing html5websocket? I developing a html5socket based client that will interact with tcp. So I want first a testing server. I am good in PHP but not in sockets ...
0
votes
2answers
82 views

How to put tcp server on another thread in python

I try to write a daemon in python. But I have no idea how can I use a thread to start parallel tcp server in this daemon. And even what type of server I should use : asyncore?SocketServer?socket? ...
0
votes
0answers
57 views

Unable to Write to Form Label from a Background Thread in a Different Module

I am trying to write a simple tcp server that runs as a background thread. So I can easily move the code around, I am trying to get all of the server code in a separate module. I can get the ...
0
votes
1answer
32 views

TcpListener doesn't answer

I m trying develope a socket program. Here is apart of my code: TcpListener TcpDinleyici = new TcpListener(7091); TcpDinleyici.Start(); Socket IstemciSoket = TcpDinleyici.AcceptSocket(); ...
0
votes
1answer
334 views

TCPStream Class for multithreaded TCP server

I'm currently working on transitioning a small console application to a TCP server / client application. The client will connect to the server via any Telnet client, and the server will replicate the ...
0
votes
1answer
325 views

Ruby tcpserver client server

I have an application that I am coding to have the logging info be sent over tcpsocket to a server and have a monitor client connect to the server to view the logging data . So far i am able to get ...
0
votes
2answers
379 views

C# send and receive tcp packet via web app

Hi We are writing a unique project. I was wondering if someone could point me us in the right direction, as I am not familiar with tcp programming. We talk to an external system. I send a tcp packet ...
0
votes
1answer
456 views

Qt TcpServer architecture

The question is about the architecture of a server with Qt. For example, there is a slot ReadyRead() being called when a socket signals readyRead() If there are several kind of requests we can void ...
0
votes
3answers
423 views

How to prevent “The connection was reset” error?

I have a very basic TCP server implemented in Ruby. In general it does what it's supposed to, but every once in a while I get "The connection to the server was reset while the page was loading" ...
0
votes
2answers
105 views

Server jams at after reaper call (c)

I was working with a TCP server and something ultra weird came up. When I connect with one client, everythings goes fine. When two or more client connects, traffic is still fine. But when any of the ...
0
votes
2answers
75 views

How to squeeze in additional parameters to a reaper function when a parent is signalled to kill a child (c)?

I'm writing a TCP server that functions very much like a chatroom and came across this question. When a user connects, a child process is created to serve the user. When a user logs in, I store his ...
0
votes
1answer
232 views

Bind TCP server to specific adaptor

How can I specify which adaptor to begin listening on? I have an application running on a PC which happens to have 2 network adaptors running on different subnets (one network for Business LAN ...
0
votes
2answers
343 views

What is most efficient way to read from TCPServer?

I'm creating a ruby server which is connecting to a TCP client. My server is using a TCPServer and I'm attempting to use TCPServer::recv(), but it doesn't wait for data, so just continues in a tight ...