Tagged Questions
0
votes
1answer
22 views
vb.net server - multiple clients continually processing different information
I am looking for help with writing a server application to serve an updating text stream to clients. My requirements are as follows:
I need to be able to have a client request information on server ...
1
vote
1answer
22 views
Unexpected behavior of tcp server: why adding delay increases ability to service clients?
Good day everybody!
My question is about NIO based server and my situation is the following: server reads messages from 100 clients (100 client threads) which send 100 messages each. So, total ...
0
votes
0answers
12 views
how does it differ; tcp Vs tcpV6
I have TCP client/server console applications. When I tested them in 2 different m/c with win XP Os, it worked fine. But when I run the server in Win7 [64 bit m/c] and client in XP [32 bit], client ...
1
vote
1answer
18 views
TCP Socket binding timeout
I have questions about the time limit for the tcp binding socket in server side.
In my survey, I found if the tcp client socket send the close message to the server, the client will enter to ...
1
vote
1answer
23 views
Java TCP socket server with PHP client?
Hey there,
I am developing an TCP socket server in Java. The client(s) must connect to a webpage (in PHP)
Well, here come's my trouble.. They can connect to the specified host, but the server can't ...
0
votes
4answers
52 views
InputDataStream.available() is always 0 Java Socket Client
Why does this part of my client code is always zero ?
InputStream inputStream = clientSocket.getInputStream();
int readCount = inputStream.available(); // >> IS ALWAYS ZERO
byte[] recvBytes = ...
1
vote
1answer
44 views
Handling many connection by Python [closed]
I've a client/server application. Client App will be coded on C++. On Linux we have server program. This server will handle thousands of users and millions of requests and those thousands of users ...
-2
votes
1answer
38 views
Android send data via socket [closed]
I would like to send a simple date through tcp. I working with threads, but I dont know why but when i try to run my code that is stop imediatelly here is that. I have already set the permissons as ...
0
votes
1answer
25 views
java socket sending and receiving
since hours I am thinking about how I should use Java Sockets to send and receive data. I hope you can help me finding a good way to do it.
I have build a Server/Client structure where the client ...
0
votes
1answer
17 views
Android TCP Client/Server not passing messages properly (Only first received)
I have created two android applications, a client and a server, utilizing TCP to communicate across devices. On the server, I have this code to listen for TCP communication:
private class StartServer ...
0
votes
3answers
40 views
Read Data from a Java Socket
I have a Socket listening on some x port.
I can send the data to the socket from my client app but unable to get any response from the server socket.
BufferedReader bis = new BufferedReader(new
...
0
votes
2answers
53 views
delphi, send image with indy10 from client to server
how i can send from a Timage (clientside) to another Timage(serverside)?
I'm using delphi XE3 with idtcpclient1, idtcpserver1 (indy10 component).
I already tried to do something but i had some ...
0
votes
2answers
31 views
Desktop TCP Streaming (java)
I want to stream desktop screen captures using sockets.
I don't know the exact way to do this, so I went with AWT's robot :)
Robot robot = new Robot();
BufferedImage image = ...
0
votes
2answers
40 views
how to check tcp peer is closed
I have a TCP network connection with remote host.(windows or linux)
if remote host process is terminated, recv() fails
an I know the connection is closed.
but, is there any way to check if the remote ...
1
vote
1answer
51 views
Multiple request/response in socket programming
In multithreaded server which assigns new client to a new thread, I want to device a pattern which will handle multiple request/acknowledgment for a client.
Please see the operation sequence below ...
1
vote
1answer
36 views
Test the functionality of keepalive in nodejs tcp socket
I've been testing the functionality of keepalive in nodejs tcp sockets.
It seems that I'm missing something here!
Here is my server code:
var net = require('net');
function accept(socket) {
...
0
votes
0answers
41 views
Cannot get text value from BufferedReader [closed]
I have created an Android TCP server as well as a client. Both can communicate fine (in the sense that sent messages are registering).
Below, is the code I use to send a message from the client to ...
0
votes
1answer
61 views
Multiple TCP streams interfere with each other
I have a client that connects to an NFS server and writes data. It is a multiprocess application that creates as many TCP connections as there are processes. The problem is that if I try one process, ...
0
votes
2answers
86 views
Setting up a multi-client/server TCP connection in Java
I'm trying to create a multi-client/server application in Java. I'm having quite some issues because my threads seem to get entangled... Here's what I'm trying to do.
I have a Server-class that ...
2
votes
3answers
120 views
TCP sockets: Where does incoming data go after ack(leaves tcp read buffer) but before read()/recv()?
If i have a TCP connection that transfers data at 200 KB/sec but i only read()/recv() from the socket once a second, where are those 200 KB of data stored in the meanwhile?
As much as I know, data ...
0
votes
1answer
52 views
sending file over tcp between android and pc
I want to establish a communication between 2 android devices. with a server to client (through a server) methodology. So generally I was thinking sending the file to a server (pc) then fetch the file ...
0
votes
2answers
69 views
TCP - Android client + Java Server
I've implemented a Java TCP server running on my PC which will accept incoming messages sent from an Android device running the client, also implemented. The server just receives the messages from the ...
1
vote
2answers
70 views
Creating a basic C/C++ TCP socket writer
Below is the following basic socket code I came up with:
//General includes:
#include <iostream>
#include <stdio.h>
#include <string>
//Network related includes:
#include ...
0
votes
1answer
42 views
Simple Perl socket script hanging
I have a Perl script consisting of the following:
#!/usr/bin/perl
# Script name: socket.pl
# Build socket:
use IO::Socket;
my $sock = new IO::Socket::INET (
...
0
votes
2answers
14 views
CodeSynthesis XML with C++ TCP socket
I'm not really experienced with C++ so I need to ask you for some help.
I need a server implemented in C++ that listens to a TCP port. On this port it should simply receive XML documents. I found ...
2
votes
1answer
36 views
Given any epoll TCP socket event, if EPOLLRDHUP=0 and EPOLLIN=1; is a subsequent call to read()/recv() guaranteed to return a read size unequal to 0?
From the manual of epoll_ctl:
EPOLLRDHUP (since Linux 2.6.17)
Stream socket peer closed connection, or shut down writing half of connection. (This flag is especially useful for writing simple ...
0
votes
0answers
40 views
recv() idling for some time even if data is received
I am writing a client for sending a tcp request to server after setting DSCP value to 0x25 and receiving response from server. I am using WinSock2 functions for this. For reading the response I am ...
0
votes
1answer
58 views
Desktop server and android client local connection
i try to connect my windows desktop java server from android client. I'm working cross-platform. Desktop server and desktop client working fine with same code, but desktop server and android client ...
0
votes
1answer
40 views
C# Application Lags when Communicating over TCP
I am making a simple communication between a Client Application and a Server Application.
Server:
TcpListener tcp = new TcpListener(IPAddress.Parse("192.168.1.66"),9000);
tcp.Start();
TextBox.Text ...
0
votes
0answers
28 views
What are Channels in AQMP Rabbit MQ?
I have been reading through the RabbitMq in action book this is the following excerpt from the book [Chapter 2, Section 1] where i am stuck
Whether you’re publishing a message, subscribing to a ...
0
votes
1answer
32 views
Non blocking connect call doesn't return connection refused
I have setup a timeout on a non-blocking connect call, which timesout correctly when the connection is attempted to an address that will not respond.
However, when the connection is refused by the ...
-3
votes
1answer
34 views
tcp socket data out of order?
When sending data over a socket, I read that the individual messages can be fragemented, so that I receive differently sized packages then I sent. That's ok and easy to deal with.
However, I'm a bit ...
-1
votes
1answer
35 views
Iphone - not able to send data to server after loading next viewcontroller [closed]
I have 2 screens. Login screen which after successful login takes me to the next viewcontroller.But I am not able to send data to the server from the next viewcontroller. I connect to the server on ...
0
votes
0answers
24 views
how to make my tcp socket use a socks4/5 proxy
I first make a socket with something like this:
self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
Now i want that socket to send the packet to the proxy server which will then ...
0
votes
0answers
38 views
Python / MySQL / Can't create TCP/IP socket (24)
After some hours of operation my python script is spitting the following message.
ERROR protocol # [Failure instance: Traceback: <class '_mysql_exceptions.OperationalError'>: (2004, "Can't ...
0
votes
1answer
39 views
How to create broken pipe IO exception in java
I am trying to understand broken pipe exception and thought it would be a good idea to generate one but unfortunately i have not been able to.
Server - netcat
Client - Java socket
Server ...
0
votes
0answers
186 views
Error 324 (net::ERR_EMPTY_RESPONSE): The server closed the connection without sending any data
I am writing ThreadPooled Web Server. But I found a very big problem, and my head is banging in trying to solve this problem. At the end I am unable to solve this. The problem is very strange.
When I ...
-2
votes
1answer
37 views
TCP Socket on Android can't be opened [closed]
I'm trying to build a TCP Socket connection to a server in Android.
After creating the socket the code is running into a null exception.
I've already tried to run the code in a Java-Application and ...
0
votes
0answers
18 views
Redirect localhost to remote host
I'm developing a program to work with RFB protocol. I want something to redirect from localhost (127.0.0.1) to my remote host. So in the software I make the redirection I can see all protocol messages ...
0
votes
2answers
36 views
Android client socket doesn't send data after some time
I'm developing an Android real-time-data app that sends data (floats and ints) to a server on the local subnet via a TCP socket. The problem I'm facing is that after sending some data simultaneously ...
0
votes
1answer
41 views
incorrect connection always succeedes
I'm trying to set up a simple connection with boost::asio. Whatever I do the boost error handling says that the connection succeedes, but it doesn't work.
This example presents the problem.
Whether ...
0
votes
2answers
51 views
java.net.SocketException: Socket is closed TCP Connection
Doing some debugging, I think the error occurs in this method below. The method basically sends an ID (string) to the server and the server after receiving this ID looks up a record which it sends ...
-1
votes
2answers
54 views
ObjectInput and Output streams are not being accepted by client/server
I have one program with two serverside processes. One server just sends an ArrayList to client. The other server first takes a string from client and then finds proper record corresponding to the ID ...
0
votes
2answers
43 views
Measure tcp-connection speed
I want to write simple unix-application that measures tcp-connection speed.
So I have:
server listens on specified port, accepts connections and measures speed
client sends messages (continuously)
...
1
vote
4answers
79 views
Best practise: Sending typed data over TCP
I want to implement a server which has a few methods from which one accepts an array of two-dimensional points (a struct). I'm wondering if I should implement it as a WebService or as a simple TCP ...
0
votes
1answer
80 views
Why code shows “Error 354 (net::ERR_CONTENT_LENGTH_MISMATCH): The server unexpectedly closed the connection.”
I am building my HTTP WEB SERVER in JAVA.
If client request any file and that file is on that place in server, then server gives that file to client. I also made this code, and it works fine.
The ...
0
votes
0answers
25 views
Android to android TCP connection failed
I'm trying to make TCP connection between android phones which are in same subnet. Connection works when I use android phone as server and android emulator as client. But when I switch emulator to ...
0
votes
1answer
31 views
Can't connect to remote ip
I'm trying to connect client with server. With local address (127.0.0.1) everything works perfectly fine, but when i try to use my remote address, it doesn't work. I search this thing all over the ...
0
votes
0answers
26 views
Two serverside processes in one program?
I know this is probably not practical, but for an assignment, I need to know if this is possible and how (simple example).
I was thinking something like this. But then how would I have the ...
3
votes
2answers
87 views
Basic C Server: Connection Refused Error
I have a program that should accept a connection at port 62085 and sends back a test message. The code hangs at accept() and never returns even if the client tries to connect. Why does the server ...

