-1
votes
0answers
18 views

Will traffic control software cause tcp packets to be dropped and how to prevent it? [closed]

I am testing client-server applications using NetLimiter which is a traffic control software. I found that, when client is receiving files from server and I use NetLimiter to set the download rate to ...
0
votes
0answers
23 views

Cannot establish TCP connection outside of LAN

I have been trying to create a TCP connection between a client program and a remote server. I am able to form a connection between the two when they are running on the same machine, and any machines ...
0
votes
2answers
70 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 ...
0
votes
0answers
32 views

Server-client architecture for instant message applications?

I am writing an instant messaging application using TCP and Java. This is how my server side works (roughly); // open connection here while(true) { newClientSocket = conn.accept(); (new ...
0
votes
1answer
107 views

Erlang tcp server/client sending messages

I'm currently writing a simple server which will work with clients connecting and then talking with eachother where the server acts as an intermediary. The setup is: Server starts 2 Clients ...
-3
votes
0answers
46 views

Multithread TCP Server-Client JAVA [closed]

I am currently working on a project where I have a multi thread TCP server and client connection. For now the server is sending an echo back to that particular client's input. I need to change that to ...
5
votes
1answer
83 views

TCP handshaking fails - what's wrong with the server's reply?

I'm building a server with the ENC28J60 chip and a PIC18F4620. The chip is connected to my PC via ethernet. Currently, I'm trying to set up the TCP connection over which I'll build an HTTP connection ...
0
votes
3answers
53 views

How do I receive and manage multiple TCP connections on the same port?

I have a number of clients who need to connect to a server and maintain the connection for some time (around 4 hours). I don't want to specify a different connection port for each client (as there are ...
0
votes
1answer
93 views

Simple TCP server with multiple clients C/unix

I'm having problems understanding socket programming and need some help. I am suppose to modify my server code that I have written to accept 3 clients. I know I am suppose to use a fork for each ...
0
votes
2answers
60 views

Try to get ObjectInputStream from Server (TCP) to deserialize objects

I basically want to send an arraylist from Server to my client and it has to be serialized so I'm using ObjectI/OStream. But this is by first time creating a client/server program so I don't really ...
0
votes
2answers
138 views

Java: TCP socket connection. Client receiving null/readline() returns null

I am new to java TCP socket. I tried to implement a server and a client. So the server should check input (do something) and send string to client. The client should send string to the server and look ...
0
votes
1answer
53 views

Weird message getting with serialization and c#

I tried to send it from one client to another, and the source, destination and the data receive fine, but the string and the double become null. This is the code of the TcpObject: [Serializable] ...
0
votes
0answers
24 views

/usr/include/netinet/in.h:138: note: candidates are: in_addr& in_addr::operator=(const in_addr&)

I wrote a simple TCP/IP network applications (server and client). In the code of client app, I did like this and then build with 'g++ -o client client.cpp' under Linux. #include <iostream> ...
1
vote
2answers
162 views

difference between rpc and normal tcp/udp server client program?

so i have been searching different ways to create client and server program (using visual studios in c++) and i came across RPC (Remote Procedure Call). But i noticed that this also uses a tcp/ip or ...
1
vote
1answer
113 views

What's the most efficient architecture for this system? (push or pull)

All s/w is Windows based, coded in Delphi. Some guys submit some data, which I send by TCP to a database server running MySql. Some other guys add a pass/fail to their data and update the database. ...
1
vote
1answer
76 views

BOOST-ASIO blocking server does not respond to blocking client?

I recently had this question solved for the server in question but it turns out the server does not seem to reply back to the client nor does it even receive any data sent in the first place. This is ...
0
votes
2answers
699 views

java.net.SocketException: socket closed TCP Client Server Communication

I am creating a java client/server application over TCP where we have two sockets. One is for exchanging messages. Two is for file transfer. I have created in the Server two ServerSockets in order to ...
0
votes
0answers
67 views

C# TCP Server Issue Through Router

I created a simple client/server setup based off the code here with C#. I use port 2055 for my testing. My local address is 192.168.X.X and the external address is similar to 65.110.X.X. I went into ...
0
votes
1answer
30 views

Android Client Implementation Errors

Trying To let an android device get data from a server I have: RetreiveFeedTask DoStuff=new RetreiveFeedTask(); try{ Work=(DoStuff.execute(Exec)).get(); } ...
0
votes
1answer
279 views

TCP/IP on Android

I have an android application which I want to send a simple command to my `public class ActivitymainActivity extends Activity { private TextView textview; private Button button; @Override public ...
2
votes
1answer
205 views

C Client Server echo program displays invalid messege in client

I'm new to socket programming and C as well. I'm creating a simple echo client server application which supports multiple clients using threads following a tutorial. In the application everything ...
0
votes
1answer
107 views

Erlang: {packet,N} option works for N = 0 but not 1,2,4?

The following code does work for the {packet,0} option in the gen_tcp:connect() function call but not for 1 , 2 and 4 (although I only tested it for 4 and I'm assuming 1 and 2 doesn't work either). ...
0
votes
2answers
321 views

Java Socket Write Error

I'm getting a "Socket Write Error". While scouting around on StackOverflow I found some suggestions for using flush(); method to send bytes through the stream. The problem I'm having is that after ...
0
votes
1answer
71 views

how to make a server and client run on any machine

i created a client server program in c++. but my problem is that the client can only connect to the server if the server is on a certain computer because the client must know the server's ip address ...
0
votes
0answers
183 views

converting c++ code from TCP to UDP

i had created a client server program in MFC using TCP but by doing this the server can only work on one computer because you have to tell the client the ip address to connect to ...
0
votes
3answers
94 views

Erlang: Converting TCP sent string into its proper form e.g. <<“SomeString”>> to “SomeString”?

I have a client and a server and I use the client to send a string such as "Hello" and it shows up on the server side as <<"Hello">>. Is there a way to simply convert ...
0
votes
0answers
20 views

Message queue not opening during first time

I have created an application which uses message queue for data transfer over TCP client/server mechanism .Messages get written to the queue in asynchronous fashion whenever the monitored element's ...
1
vote
1answer
143 views

C language. TCP server-client, string passing error

I have a problem with passing string as the argument to my client, and I new to C so can't really figure out what is going on. I managed to pass a character to server, but got problem with strings. ...
0
votes
1answer
105 views

slow download over socket

I've written a proprietary protocol (client and server) on top of TCP in C#, which sends files from client to server and vice versa. Since it's full duplex in concept, the receiving and sending ...
0
votes
1answer
137 views

TCP connections between Android devices [duplicate]

I am thinking of building Android apps that can communicate to each other - e.g. IM or game. As with any Java/Android, there is a suite of TCP/UDP communication library i can use. Question is this: ...
0
votes
2answers
122 views

Why does splitting TCP message on client side doesn't work?

I've written a Client-Server application using C#. The client asynchronously sends a message with a 4-byte header defining the message size, and the server waits for the entire message (it knows the ...
0
votes
1answer
1k views

Android TCP server client

I created a TCP server(PC)-client(Android) application. I connected the client to the server, but when i resart my android application i cannot establish a connection. How to handle this so tha when i ...
1
vote
1answer
70 views

what are the changes to be made in order to convert tcp progrem into udp [closed]

#include<stdio.h> #include<stdlib.h> #include<string.h> #include<sys/types.h> #include<sys/socket.h> #include<netinet/in.h> #include<poll.h> ...
1
vote
2answers
131 views

how can a tcp socket read call never return

A client has reported an error I fail to comprehend. A TCP based client is connected to the server from which it receives data, rarely sending anything. Usually everything works fine, but once in a ...
2
votes
1answer
41 views

how to connect client immediately one after the other in tcp socket api program

server.c #include<stdio.h> #include<stdlib.h> #include<string.h> #include<sys/types.h> #include<sys/socket.h> #include<netinet/in.h> #include<poll.h> ...
0
votes
2answers
100 views

Can I send an object via TCP using Ruby?

I'm trying to send and "message" object via TCP on Ruby and my client class simply don't see any thing comming. What am I doing wrong? My message class (that I'm trying to send) class Message ...
1
vote
1answer
205 views

Python 3: TCP Client/Server Broken Pipe Error

I'm writing a TCP client/server and I've been hitting this broken pip error in the latter part of the code. I have been unable to isolate the cause due to a limited understanding of Python and socket ...
0
votes
1answer
585 views

TCP/IP Socket Connection not receiving data [closed]

I am trying to set up a LAN server and client for a game that I am working on. Right now, the server is able to detect clients connecting to it and add it to a list of connections, but all information ...
2
votes
2answers
510 views

Setting up a TCP/IP Client and Server to communicate over a network

I am trying to learn a little about socket programming and I have stumbled across TcpListener and TcpClient to use as I read they are slightly easier for beginners. The basic jist of what I want to ...
0
votes
1answer
261 views

Python: Passing Multiple Variables Across TCP Client/Server

I'm creating a TCP client and server using Python 3.3 and I'm new to using both Python and sockets. My issue is that I need to be able to store anything passed across the connection as a separate ...
0
votes
1answer
56 views

Can't send correct value over a socket using Python

I'm new to using Python and sockets in general (only started yesterday) so I've been having a lot of issues trying to set up a TCP client and server. The issue I'm having is that I want to send a key ...
0
votes
3answers
419 views

Sending messages from server to client c#

My client sends messages to the my server using tcp protocol (my server has a listener). I'm trying to send messages back from the server to the client, but I'm not sure what do I need to add to the ...
-2
votes
1answer
378 views

Transferring file, UDP, server client- name of files, transfer large files [closed]

Please advice I work with the following code. How can I recognize the file on site of client?(acdc.mp3,ebook.pdf) How can I send larger files (video)-multiplexing? public class Sender implements ...
1
vote
1answer
82 views

Auto function call receiving and updating field in Titanium/android

I have a tcp callback function written in config.js and included it into my index.js file using Titanium.include('config.js'); I just want whenever this callback invoked by some client, a ...
-1
votes
3answers
48 views

how to connect users more than number of ports to a single server? [closed]

According Google the following are the facts on usage of ports: The Well Known Ports are those from 0 through 1023. The Registered Ports are those from 1024 through 49151 The Dynamic and/or ...
0
votes
0answers
30 views

Networks and file sending via TCP

I'm trying to send a file from one computer to another via TCP. My server/reciever is directly connected to the internet (at least, that's what I suppose, I'm hiring this room and the internet is ...
1
vote
1answer
153 views

FIN pkt with HTTP connection after some time

Opened 2 TCP connections : 1. Normal connection(while implementing echo server,client) & 2. HTTP connection Opened HTTP connection with curl(modified) utility while running apache as server, ...
1
vote
3answers
328 views

Java TCP and UDP echo in one server

I am trying to build a server which can echo the input from either a TCP or a UDP client. So far the best I could come up with is this: import java.net.*; import java.io.*; public class ...
2
votes
2answers
252 views

C#\Java and Java\C# pairs of client\server - graceful disconnect when client(socket) is closed

This is maybe more of a thing for discussion than a question. Background: I have two pairs of server/client, one pair written in Java and one written in C#. Both pairs are doing the same thing. No ...
0
votes
1answer
249 views

android client-server UDP or TCP?

I want to create an android application (client) that can access specific files on a laptop (server) over long distance (without using wi-fi or bluetooth) . what's the best way to do this? UDP or TCP? ...

1 2 3 4