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)

5
votes
1answer
704 views

New to Java EE; architecture suggestions for a service/daemon?

I am brand new to the Java EE world. As an exercise to try and familiarize myself with Java EE, I'm trying to create a tiered web-app, but I'm getting a little stuck on what the best way is to spin up ...
0
votes
0answers
11 views

how to write a HTTPS tunnel server in python socket?

I am writing a HTTPS proxy server in python, it should receive everything from client, send to the target server, and vice versa. I found when I use Squid, client will first send a HTTP CONNECT ...
0
votes
1answer
29 views

Java: how to check if BufferedReder is Empty?(code included)

Im practicing some stuff for my java networking exam and I cant seem to figure this out. I wrote a simple server program that is suppose to ask my client program a question and then wait fro a reply ...
2
votes
1answer
1k views

Persistent DNS caching not utilized by Python's socket.getaddrinfo/mercurial

I used to have very slow DNS lookups on my Ubuntu machine when connecting through one Modem/ISP. I followed instructions (such as those here) to use persistent DNS caching so I don't do repeated DNS ...
0
votes
1answer
23 views

How to handle BufferedReader.readLine() goes to air and not return any value or exception in java?

I am reading a file through socket communication . connection made. while reading end of the file application hanged, it doesn't return any value/exception/null.still waiting for input. How to ...
0
votes
2answers
28 views

Client is blocked after unmarshalling xml from socket using JAXB

I'm trying to send some xml from a Client to a Server and have the Server send back a message to the Client after receiving the data. If it is just sending xml then it runs smoothly, but when the ...
0
votes
2answers
27 views

python socket: winerror 10056

I've read throught this introduction to python sockets: http://docs.python.org/3.3/howto/sockets.html This is my server import socket serversocket=socket.socket(socket.AF_INET,socket.SOCK_STREAM) ...
0
votes
2answers
10 views

htonl, ntohl, NBO client and server

I am writing server and client and i have some integers to pass. In my server application i am recieving an integer from the client. In the client do i call ntohl or htonl on the integer? If i call ...
0
votes
2answers
37 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 ...
4
votes
6answers
76 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 ...
3
votes
3answers
2k views

Problems trying to implement Java Sockets example

I am trying to implement this example here: Reading from and Writing to a Socket I copied and pasted the code into NetBeans. I changed the port name "taranis" to "localhost" and tried to run the ...
6
votes
4answers
1k views

Keeping a socket connection alive in iOS

I have the following code written in Objective-C that writes data to a socket. The server is running node.js on top of Ubuntu: NSString *url = @"anIPAddress"; CFReadStreamRef readStream; ...
0
votes
1answer
33 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
3answers
660 views

System.setProperty used by a thread impacts other thread in communication to external network elements. How to resolve it?

In my application, I have two threads. Each thread communicates to different external entities Let us say T1 --> N1 & T2 --> N2 (T1 & T2 are two threads. N1 & N2 are external entities. ...
0
votes
1answer
15 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 ...
1
vote
1answer
13 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 ...
0
votes
1answer
72 views

why warning appears when sending bitmap frame into MemoryStream to client?

Before I explain my problem, I'm sorry for my bad english. Okay, here my problem. when my Indy server sends bitmap frame to client, always appeared warning like this : "EAccessViolation at address ...
0
votes
0answers
19 views

Python server receiving HTTPS request

I have a Python-based server using sockets that receives data based on a full HTTPS request. How would one most elegantly approach the problem of finding the target server/URL of the respective HTTPS ...
0
votes
0answers
14 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
2answers
43 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
1answer
25 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
3answers
31 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
3answers
57 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
53 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 ...
0
votes
1answer
39 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
30 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 ...
3
votes
1answer
36 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
0answers
22 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": ...
2
votes
1answer
20 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
22 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
1answer
25 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
20 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
0answers
16 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
votes
2answers
85 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
2answers
15 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 ...
0
votes
2answers
30 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
23 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 ...
1
vote
0answers
15 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
1answer
39 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 ...
3
votes
4answers
97 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 ...
-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 ...
-1
votes
2answers
456 views

Sending file from one client to another client using socket in java

Hello everyone , I am trying to develop the application for transfering/sending the file like SKYPE works.So I am using socket for transfering file from one computer(client) to another ...
0
votes
2answers
30 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, ...
5
votes
1answer
58 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 ...
-1
votes
0answers
23 views

android string to byte via client socket

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
45 views

Troubleshoot connecting client to server in java

I have been having this problem for some time now and although my efforts and my friends help I can't seem to get past this problem . My problem is I am trying to establish a connection between ...
2
votes
1answer
31 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
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
19 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 ...
0
votes
0answers
15 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 2 3 4 5 348