An endpoint of a bidirectional inter-process communication flow. This often refers to a process flow over a network connection, but by no means is limited to such.

learn more… | top users | synonyms (3)

0
votes
2answers
50 views

Simple socket-level program - client/server

The following is a simple socket-level program. Once a connection is established, the server speaks for as long as he/she wants provided that the message does not end in a period - then the client can ...
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 ...
4
votes
6answers
89 views

What to use? WCF or Sockets? in a C# program

I am in the need of creating a C# program that will run on couple of our local Windows client machines. These 'client' programs will have to take commands from a 'admin' program run on another ...
0
votes
0answers
16 views

android maps failing after vpn connection

I seem to have bumped into an interesting problem that I hope someone else has seen before. I am working on a VPN app and one of the features is a map showing your ip-address location both before and ...
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 ...
1
vote
0answers
57 views

Reading and writing JSON streams

I am trying to read and write JSON directly to and from a socket stream using the gson library. I have a base class that all messages are derived from: abstract class MessageBase { public String ...
1
vote
1answer
51 views

Game server turn timer

I'm making a Java multi-player turn-based game and I want to limit the time that each player have to make their move, the game is composed of game sessions or rooms and each room have 4 players. The ...
0
votes
2answers
51 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 ...
3
votes
1answer
44 views

“‘sockaddr_in’ undeclared (first use in this function)” error despite including the requisite headers

#include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <unistd.h> #include <arpa/inet.h> #include <netdb.h> #include <unistd.h> ...
3
votes
1answer
58 views

Socket hang up error in http request on nodejs

hi am new to nodejs by using compound as framework, i have been getting error when request through on https. i tried simple code is action(function getteams(req){ Mymodel.find({"season": ...
0
votes
1answer
30 views

Trying to send xml in utf-8 over socket in Android

I have an Android app that sends xml files to a server. If I set the encoding of the xml header to utf-8 it all works until there is a weird character like a japanese symbol for example, in this case ...
0
votes
1answer
23 views

Networking Sockets Theory

If two devices with different IP addresses send UDP packets through processes with different ports to the same destination device and on the same destination port, will the two packets be received by ...
0
votes
1answer
47 views

Android - Send an image through socket programming

I am implementing a socket application where one phone will be a client and the other will be a server. The program is able to send strings using print writer just fine from the client to the sever ...
0
votes
0answers
18 views

vshost.exe becomes not responding in socket programming in c#

i'm trying to write a program in c# and i have 2 forms 1 for client side and one for the server side.i have button on the server form that starts the listening on port for incoming connect request ...
1
vote
1answer
18 views

Invalid MIT magic cookie when connecting to X server

I'm trying to write my own code to connect to an X server. I ran xauth to get the magic cookie I needed and wrote the following code to try and test out establishing a connection: #include ...
2
votes
1answer
24 views

socket error in send() — No such file or directory

if (fcntl (i4SockDesc, F_SETFL, O_NONBLOCK) < 0) { printf(LDP_IF_MISC, "LDPTCP: Client : Can't Set Sckt in NON BLK\n"); return CONNECT_FAIL; } i4RetVal = send ...
0
votes
1answer
25 views

TCP NTP Java Socket Program

I have this code about a Server-Client NTP project I'm working on... I initialize the socket but I get java.net.SocketException: Socket is not connected this error. Any clues? Can anyone please ...
0
votes
2answers
33 views

Interrupt Socket.Accept() with ReadKey() in C# Console App

I wanna to how to interrupt Socket.Accept() in Synchronous Server application with ReadKey(), something like : when i press Esc or Ctr+X key, it will automatically stop the Socket. Based on some ...
1
vote
0answers
19 views

Is it necessary to check the return value of spawn.send in pexpect?

Is it necessary to check the return value of send in pexpect? The implementation of spawn.send(s) is using something like: c = os.write(self.child_fd, s) return c Where the number of bytes are ...
0
votes
2answers
34 views

Server-Client NTP project - NullPointerException/SocketException issues

I have this code about a Server-Client NTP project I'm working on... and I get a "java.lang.NullPointerException" when I run it... -NullPointerException fixed... I initialize the socket but I get ...
0
votes
1answer
49 views

How to clean up a socket after connection failure?

The code is offered below. I create a TCP socket and try to connect. The connection fails. However, something is left in the buffer and the socket remains readable. Is there way to clean up the socket ...
-1
votes
2answers
100 views

Delphi: Try to find open TCP ports but doesn't detect any open port

I have two processes that must run on two free TCP ports on the PC. This must be a painless out-of-the-box process for it's user, I want to auto detect free ports to avoid conflicts and apply these ...
0
votes
1answer
26 views

communicate with java server through python client

I'm trying to adjust the sample java code for an API to work with a python script. I know the java code works and can do a socket connection in python but can't figure out how to convert the string in ...
-2
votes
1answer
16 views

NTP project in java [closed]

I'm sort of making a Network Time Protocol (NTP) project in java and I'm asked to make at least 3 clients connect to a server and get time with fixed delay and stuff. My question is how can i make a ...
-2
votes
0answers
26 views

android string to byte via client socket [closed]

I've a trouble with sending bytes via client socket. When i use this c# code it works: String message = ">V:1,C:14,L:" + (((int)renk.R * 100) / 255).ToString() + ...
0
votes
2answers
33 views

Sockets, Threads and file discriptors in Linux

I'm having some trouble with a program I wrote for Linux (some kind of a server), I'm getting the infamous "Too many open files" error. Up until now I have thought it is a matter of sockets, but, ...
0
votes
1answer
21 views

Why should I use, or not use, MSG_CONFIRM?

I am acquainting with BSD sockets, and flicking through the man page of sendto, I bumped into MSG_CONFIRM flag, which is quite mysterious to me at the moment. The description says: Tell the link ...
1
vote
0answers
38 views

Lost messages with non-blocking OpenSSL in C

Context: I'm developing a client-server application that is fairly solid most of the time, despite frequent network problems, outages, broken pipes, and so on. I use non-blocking sockets, select(), ...
0
votes
1answer
11 views

IPC over Socket - Messaging standards

I am implementing IPC over sockets using .NET 2. I am wondering if there is an established best practice for messaging between the client and server (once the connection is established), or if this is ...
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 = ...
5
votes
1answer
66 views

Prevent an app from binding to a socket that is already bound

How to prevent a Java app from binding to a socket that another process is already bound to on Windows? I have an issue where I have a Java application that is listening on port 80. The application ...
3
votes
4answers
98 views

How can I refuse a socket connection in C?

If I want to accept a connection I call accept, but how can I refuse a connection? In a working socket echo client I have this if statement. In the echo server, how can I make the echo client reach ...
0
votes
1answer
34 views

Bold text through C++ write statement

I'm working on a dictionary server via telnet, and I'd like it to return it in this format: **word** (wordType): wordDef wordDef wordDef wordDef wordDef wordDef wordDef. Right now I'm ...
0
votes
2answers
26 views

Send text to serversocket after connecting to it

I have a problem that I can't send text to ChatServer. My code: ... try { socket.connect(address); System.out.println("Successfully connected to server!"); Thread ...
0
votes
1answer
40 views

QSocketNotifier: socket notifiers cannot be disabled from another thread

Im aware the I cannot communicate with QTcpSocket between threads but I cannot find what Im doing wrong. As soon as I send data emitting signal to QTcpSocket which is in the other thread, ...
0
votes
2answers
18 views

command input splits after each letter python remote control program

I am working on a backdoor program for remote operations over my PC's at home. The server connects fine but I have a problem in executing the commands as the letters split up as a new command for each ...
1
vote
3answers
64 views

Memory Fragmentation and Garbage Collection in network server apps

Actually i developed an tcp based network server that does a lot of read an write and uses less than zero cpu for its business logic, it acts as bridge between two endpoint. The network server is ...
0
votes
0answers
41 views

Communication between client (android emulator) and server (app on pc) via java.net.Socket

I'm writing an simple client-server application, but I have a problem with connecting the client, which is the AVD and server - simple app on PC. When first starts the avd it works ok but when I close ...
0
votes
1answer
17 views

How to send Udp packet 2 or 3 times after failed received packet in java?

I have send Udp packet to the Server. If the server is OK then I can receive the response packet nicely but when the server is down then I did not get any response packet. Anybody can help me that how ...
0
votes
0answers
18 views

Deploy Server Client Multiplayer to heroku

I have a simple Server - Client Tic Tac Toe game which run in console, I successfully run this code on my local host what I need now is to deploy the server code on server like Heroku for example , or ...
1
vote
3answers
37 views

Networking - Using sockets and sometimes getting ghost numbers

I created a Java networking program and every once in a while when I run (it doesn't happen all the time) it I get a ghost number, my sockets receive a number something like -16956754 (its always the ...
0
votes
0answers
14 views

Doubts regarding receiving port based SMS using Socket connection in Android

I am trying to receive port based SMS with the below piece of code. serverSocket = new ServerSocket(SERVERPORT); Socket client = serverSocket.accept(); try { ...
0
votes
1answer
22 views

Limiting the connections per ip with winsock

How do you limit connections per IP with winsock? Lets say I wanted to limit them to 20 connections per IP then don't accept the connection once its reach the limit. I can't think of the logic on ...
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 ...
0
votes
2answers
34 views

Communication without IP Address

I want to ask about algorithm or method. I have case like this: I have application, I install it into 2 PC (different network), I want PC "A" can send data and read response from and to PC "B" but ...
1
vote
1answer
50 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
votes
2answers
47 views

Can't receive data: Deadlocking sockets [closed]

I'm working on a project and I can't seem to get it working. The problem I'm having has to do with the following function: ssize_t recvfrom(int socket, void *buffer, size_t length, int flags, ...
2
votes
1answer
34 views

Error Hexadecimal value 0x00 is a invalid character while sending a datatable in XML format through a LAN

HI i am quite new to NET programming. I had to develop an application where the client needs to access a server through a LAN, and receive data from a remote MS ACCESS database. The communication is ...
0
votes
1answer
69 views

TCP/IP connection between ubuntu (C) and windows (Java)

I'm trying to establish a TCP/IP communication between a server in C running in ubuntu 12.04 and a client in Java (EJS) running in Win7. The server is a thread of a greater program, so it's created ...
2
votes
1answer
39 views

Reading/Writing JSON from/to a socket

I am using the gson library to convert some classes to JSON and send them down a socket. Currently I can convert to a string and the write the string to the socket using a BufferedWriter. I can read ...

1 2 3 4 5 350