0
votes
1answer
29 views

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

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
1answer
46 views

C# Windows Application: Two Tier Communication Method

I am creating a windows application in dotnet framework 4.5. The architecture involves a connection between Application and Central Server where it communicates to central server and sends data in ...
0
votes
1answer
29 views

Communicating with Linux scripts from php web

I'm building a web application that helps people improve their English pronunciation for some words. The website displays a sentence for the user, and he/she speaks it and then press "Results" button. ...
1
vote
3answers
77 views

How do I make 2 Java applications talk with each other?

I have 2 Java applications. First I may edit as much as I wish, but I will compile it to machine code later on. Second one I am not able to edit, but I may write an addon for it. I need to make that ...
1
vote
2answers
75 views

Data transfer using sockets in android

I have a huge problem with an android app. What i need to do is : 1) User A does something in the first phone 2) User B receives the information and does something automatically I'm trying to use ...
-2
votes
2answers
124 views

How to make two Python scripts communicate over the internet? [closed]

I'm looking for a way to make two Python scripts communicate over the internet. Something like what Socket.IO does with NodeJS, but without a browser, and in Python. A constant connection (socket?) ...
0
votes
0answers
108 views

Send image bytes over TCP using Netcomm library

For the socket communication, Im using this library: http://www.codeproject.com/Articles/118485/C-VB-NET-Multi-user-Communication-Library-TCP I didn't have any problem to this moment. I can send ...
-5
votes
1answer
83 views

How to implement communication over internet with systems having IP addresses which r not supported by DNS [closed]

I want to develop an desktop application which can be used for internet based communication using Java sockets. The real problem is: most of the systems on internet have IP addresses which cannot be ...
1
vote
1answer
98 views

Request-Response logic to allow non-response messages to be processed

I have a socket application that allows thousands of clients to connect. It stores them in a ConcurrentDictionary<int, Socket> and operates solely for request-response situations: When I need ...
0
votes
0answers
78 views

Android: bluetooth communication issue

I developed an Android app which intercts via bluetooth with other device, which sends packets with a predefined frequence. If I try this app on my tablet (Acer ICONIA A501) I have no problem. But if ...
2
votes
1answer
100 views

Java Socket Problems

So the end result of my program is an updating game client, but what i have so far is a server that is able to accept multiple connections, and a client that connects to the server. this is the code ...
0
votes
2answers
108 views

Copy a socket over to another socket, is that same socket still active? java

If I have a socket variable named 'sock' and lets say down the line for some reason you have to create a new socket, lets say its called 'sock2', and you set 'sock2' to equal 'sock'. And then you ...
0
votes
0answers
80 views

PHP Unix Socket: close write (ouzput) stream but still receive answer from server

I want to query some data from a local unix socket. Therefore I have to connect, write some data and then close the write stream as the software will NOT send data until the write stream is closed. ...
2
votes
0answers
175 views

java networking slow on windows machine [closed]

I written some simple client server application - the server accept connection, the client send 100m data and then the connection closed. i have a dual boot machine, when the application running on ...
0
votes
3answers
396 views

How to communicate via Socket in Android 4.0.3

I already have a socket communication interface which works fine in 2.3 version, but It doesn't work on 4.0.3, I've heard that it's not possible to make this kind of communication in the same thread ...
2
votes
3answers
561 views

Client Server Authentication

I am creating a client server communication based on Asynchronous Sockets, my client will send the username and password to the server then the server will replay whether the account is valid, so i ...
2
votes
1answer
72 views

WCF - Is it possible to listen to listen to a WCF ChannelFactory with a HttpListener or socket

I'm implementing a little communication library for fun and it work pretty weel like wcf. All implementation was base on webRequest and HttpListener. I'm asking if there is a way to listen or ...
0
votes
1answer
520 views

C# client Python server : Connection refused

I'm working on a basic socket communication between C# (client) and Python (server), and I don't understand the reason why I've this error from the client: [ERROR] FATAL UNHANDLED EXCEPTION: ...
0
votes
1answer
213 views

how to create a chat client in java

I have a java application that people can log into (and do various things with a database with, but that's not important). I can use the .getInetAddress() to get the IP addresses of the people logged ...
-3
votes
2answers
577 views

how can I establish a TCP communication between two computers and send message over the ports using socket

I have to communicate between two systems using TCP communication and send or recevie data over the ports using sokects in C# But on the client system it is showing an error "An existing connection ...
0
votes
1answer
356 views

android communication between devices

I'm writing an android App which is basically finished and functions well on a single device. I now need to create a communication between two different machines and to send information back and ...
1
vote
3answers
139 views

How can I send a notification?

I am developing an Android App that communicates with a server. How can I send a notification from my server to my Android App without the use of C2DM? Are Sockets a good solution? What are other ...
2
votes
2answers
1k views

Connecting two Android phones to transfer data between them over WIFI

Actually i am developing tracking app and want to send Location updates between two Android phones so that both can track one another over the Map. My application must get real time updates from other ...
1
vote
2answers
751 views

Should i connect two Android phones directly using Sockets

I want to make a communication between two Android phones directly on WIFI. These two Android phones are not in the same network. I have gone through this post Incorporating Socket Programming into ...
0
votes
3answers
196 views

php: how to communicate with a background running PHP script?

theres a normal script running in the browser, and another in background (in a command line window, infinite). Until now, I simply used socket communication to send message to background php script ...
0
votes
1answer
85 views

How to communicate with a project on another server from a GWT project

I have a GWT project A and another project B on another computer. Now I want to call the business logic in project B whenever a user presses a button in project A. Project B cannot be a GWT project ...
1
vote
0answers
393 views

Communication between two Android app on two different phones

I want to implement p2p application on Android. My application consists of a background service and several Android Activity. I would like to know if there is something to manage the high-level ...
0
votes
1answer
384 views

Socket Communication: Thread hangs

I've got a simple socket server (it is for HL7 communication). When it runs longer in production, socket threads hang and consume a lot of CPU time. This is the relevant code (shortened) for the ...
0
votes
1answer
251 views

Guide me with sockets: server-client program that multiplies 2x2-arrays

I'm trying to write a c code with sockets to communicate a server and a client (or parent and child, as you prefer) but I'm really noob at this and I only keep getting errors. I know there are lots of ...
2
votes
1answer
204 views

communication b/w two application using socket in iphone sdk

I am new in iPhone & want to perform communication b/w two application running on same device which exchange some string to one another using socket connection. I am using ...
0
votes
2answers
1k views

Design Pattern: Client - Server

i am going to implement a client - server application in java. Client and server communicate with each other via TCP. There is only one central server, who handles all Client messages. I don't use ...
0
votes
1answer
531 views

PHP Client and C# Server - Not communicating due to timeout

I am rather new to socket programming but here goes nothing. I have been trying to do some simple TCP communications between a C# server and a PHP client. However, I have had no luck in getting a ...
1
vote
2answers
246 views

Java nio socket communication for two processes located on one machine or on two machine

I am new to networking and ask a simple question which makes me very confused. I hope people who has a lot of networking knowledge can help. I send messages constantly from process A to process B. If ...
0
votes
1answer
36 views

Error in server connections

I'm now trying to work with server. I have this code: I'm starting 'HandleCC' method in thread with 'ParametrizedThreadStart'. I'm trying connection on '127.0.0.1'. I can connect. When I'm ...
2
votes
1answer
332 views

Is it possible to use socket.io client-side with a custom C# web server?

related I'm building a website where you can play games. When the player makes a move, I want to send that move to the server, then use C# to compute a response and return that back to the client. ...
0
votes
2answers
182 views

How to know the status of an already established connection?

I have seen a few questions relating to this but never encountered the solution that is feasible my situation. I have 2 communicating devices communicating through my proxy device. I want to know how ...
0
votes
3answers
435 views

Socket communication between C and java

I have a client and a server both running in C. My task is to introduce java program in which I create a server to the C client and a client to the C server. I am successful in trying to get the ...
2
votes
2answers
268 views

How to deal with message fragmentation in Perl TCP socket?

I have a socket comminucation between Perl client and C++ server. Perl code: if (!socket(SERVER, AF_INET, SOCK_STREAM, getprotobyname('tcp'))) { die "Can't allocate socket\n"; } elsif ...
0
votes
1answer
126 views

When to close TCP socket ? (The perfect case)

I am developing a mobile application that transmit date using TCP protocol ( sockets ). What is the perfect solution ? is to open socket and send message, and if I wan to send another message I need ...
0
votes
1answer
240 views

Socket IPEndPoint in Windows Forms App

I have error. Code: I my code I cannot use IPEndPoint, but in Console App I can do it. How can I reapir it, and whats the preblem?
2
votes
2answers
254 views

Problem with socket communication [Android]

I'm programming a server-client application and I have a problem when transferring to the device a song as a binary byte array from the server. The code that I use is the next: int bytesRead = 0; ...
2
votes
5answers
3k views

interprocess communication in python

What is a clean and elegant way to do interprocess communication between two different python processes? I currently use named pipes in the OS, but it feels a bit hacky. I rewrote my stuff with dbus ...
0
votes
2answers
1k views

Facebook flash game client-server communication

We're currently working on a small scale indie card game for Facebook, which we hope will reach hundreds of thousands of players (eventually). We have most of the issues figured out (scalability, ...
0
votes
2answers
811 views

One server vs. multiple clients with data communication

I have a question on how to implement a server and multiple clients with data communication. They share the same dataset for each step. That is, a server gets the same step's data for each client. I ...
0
votes
2answers
385 views

Bidirectional Java clients/servers communication

I am trying to design a distributed application in Java with a few servers and a few managers (applications monitoring and configuring the servers). Most of the traffic between the servers and the ...
3
votes
3answers
7k views

Sending TCP data from Android (as client) - no data being sent?

I'm trying to send data from my Android app to my PC over TCP. The code is as follows: Socket socket = new Socket("10.0.78.75", 50505); OutputStream out = socket.getOutputStream(); ...
1
vote
1answer
667 views

Using SSL for Client/Server communication over TCP/IP sockets without a web server

I have a server application using a TCP listener mechanism with SSL over it using SslStream class, very much similar to what is described in this thread: Tcpip listener sockets SSL streams so much ...
0
votes
1answer
293 views

C# Service using Sockets & Threading With PHP Web Interface (PHP sockets)

Hi Hope someone can help me. My .net app that connects (via tcp) to a service we shall call "super-service" (reads and sends data) My app has an open socket for PHP to connect to (To allow people ...
1
vote
0answers
293 views

C# socket server doesn`t receive from client

I have an odd question. I am trying to write a C# server - client project using sockets for communication. I am new to C# but I have written the same project in Java and it worked just fine there. ...
0
votes
1answer
195 views

Problem in communicating using Socket in C#

I'm hoping I haven't missed something stupid. I am working on an application that communicates between a number of hand-held window's mobile computers and a central server. The current architecture ...

1 2