0
votes
0answers
21 views

ObjectInputStream Blocking socket external ip madness

When I initialize my objectinputstreams, after I have initialized and flushed by objectoutputstreams, I get this: Client: java.net.SocketTimeoutException: Read timed out at ...
0
votes
0answers
54 views

Connection between windows and linux machine via socket in c++

I have got a problem at connecting a Windows socket code with a Linux socket code. There cant be a connection established. I use Windows 7 and my Linux machine runs with Ubuntu. If you take the codes ...
0
votes
1answer
76 views

what is “T!” represent in socket connection?

i have open java socket for read serial data on localhost, but the when i try more times to read data then i get just two bytes which are T!. i don't know what this two characters represent ?? and ...
0
votes
1answer
52 views

socket keepalive works with xp but not with windows 7 c#

I have a strange problem: I have a list of TcpClients that I need to be notified when one of them disconnects. When each of them is initialized I set their socket to keepalive (setsocketoption, and ...
0
votes
1answer
55 views

Android socket connection null pointer exception

I have a problem with my socket connection. It says there is a null pionter exception in this line: Socket client = new Socket(ip,8000); But the Ip is OK, the port shoud be OK! Here is the full ...
-1
votes
0answers
52 views

Chat server connecting to client twice

I am making a chat server and the client is connecting twice for some reason. I have labeled each bit of code to print out when it's being activated so you can see where it's at. So basically i hit ...
2
votes
1answer
55 views

Why is this socket null?

I am creating a multi client chat server and i am pretty confident that it will work (Correct me if i'm wrong), I have the issue that on the socket that the client connects to is null so the ...
0
votes
0answers
36 views

Sending real time data(as a string) from an android device to a computer

I am trying to make an android application that records hand gestures through an android accelerometer and sends it to my computer through wi-fi where it can be further processed. My application has ...
0
votes
0answers
219 views

Connection refused only when syncing repo

So I'm syncing my repo for building android, but after the large inital repo sync I see many: fatal: unable to connect a socket (Connection refused) github.com[0: 204.232.175.90]: ...
0
votes
2answers
97 views

java applet socket connection issue

The code i have used for socket communication works in a program run in command prompt, but when the same code is used in applet embedded in a webpage there is a security issue. It does not connect... ...
0
votes
0answers
75 views

Error connecting to server by proxy server in c++ socket programming

The code for connection : cout << "connecting1\n"; WSADATA wsadata; int iResult = WSAStartup (MAKEWORD(2,2), &wsadata ); if (iResult !=NO_ERROR ) printf("\nmyERROR ...
0
votes
1answer
40 views

HttpURLConnection Closing IO Streams

I am new to Java and HttpURLConnection. Should I close the opened IO streams before dropping the connection. If I close the streams, should I need to drop the connection as well? Which is the proper ...
0
votes
0answers
70 views

Connection reset by peer: socket write error (mobile)

I'm trying use a .ogg or .mp3 audio files in one page (html5). I'm setting the audio source programmatically with jQuery inside function in external javascript file: var source = ...
-2
votes
4answers
74 views

How should a multithreaded server work? [closed]

I'm developing a little multiplayer game, but I'm confused on how I should do this. From what I've heard, I should be using a thread-per-connection model. So basically I create one thread for each ...
0
votes
0answers
7 views

How can there be 1 port always opened in server listening to any file received from clients

In a web Application, how a specific port in a Server be opened to listen any file transferred from any Client to the server. Is this possible in Apache tomcat by adding some extra code to them ??
0
votes
0answers
48 views

Log all connection with low-level socket in iOS (Jailbroken)

I'm doing a little tweak that logs all connections from my jailbroken iPhone (with Theos). Too many apps open connections that I want to prevent. I have searched for solutions that can "intercept" ...
0
votes
2answers
87 views

Disconnecting from HttpURLConnection when returning an InputStream from a Webservice

I have a webservice that is making calls to a Swift cluster and found that the connections to it are sitting in a CLOSE_WAIT state and not being closed until the HA proxy forcefully closes the ...
0
votes
1answer
246 views

Java Socket on Android, connection through 3G internet global ip

I have problems using Sockets on Android. I'm new to this topic so I try to achieve a simple chat, Android phone to another Android phone as a training. I can use my code to create a ServerSocket and ...
0
votes
1answer
53 views

Connections between controller and remote worker machines

I need to develop a platform in Java to download tweets from Twitter (that was obvious). The idea is to have various computers downloading from the streaming API and a main controller to send tasks ...
0
votes
1answer
71 views

Infinite loop for network connection

Is it considered a good programming practice to use infinite loop for network connection? Example: //connect to server conn = getConnection() while True: data = conn.getData() //do something I ...
0
votes
0answers
54 views

Cross Domain and AIR Socket Connection

I have an AIR application which has an inbuilt local Server that downloads microsites with each carrying a regular index.html file. This microsites are downloaded to separate folders each which are ...
0
votes
0answers
24 views

Javascript: Query Connection Information (Socket and Server Certifcate)

I'm interested in having a thin client perform some basic validations on its underlying connection, including the server certificate used to establish the secure channel. The client will be acquired ...
0
votes
0answers
118 views

android bluetooth connection error

I am trying to connect to a device via bluetooth for my android app. But when attempting for connection it says that socket is closed.Both listen() and accept() are working fine. Logcat shows ACL ...
0
votes
1answer
48 views

a loop in the server which reads all the client sockets

Suppose that i have a class ServerReader which is a Thread that runs all the time. the ServerReader have a loop that reads all the messages from all client in a way like this: while(true) { ...
0
votes
0answers
27 views

reading from socket serval times the same thing in diffrent places

im reading an object from a socket by ObjectInputStream. suppose that im send from the main server the object myobjec to the client. in the client side there is 2 threads which reads objects all the ...
2
votes
2answers
171 views

Making a connection with Socket.connect using timeout

I'm making a java TCP connection using the Socket class. Socket socket = new Socket(); socket.connect(new InetSocketAddress(host,port),50); I want this connection to be established fast or not ...
0
votes
2answers
52 views

unable to connect to mysql socket from C program

I am developing a C program that accesses mysql. I have the following line in my code: sts = connect_to_server(&mysql, "localhost", "my_username", "my_password, "my_databasename"); ...
0
votes
1answer
79 views

Java socket reading error exception vs return code

I an reading data off a socket using the following loop InputStream in = getInputStream(); int retCode; try { while( ( retCode = in.read()) > -1) { // do something } logger.info( "Done ...
0
votes
1answer
246 views

C# Socket Connection Issue

Ok so I have a socket connection within my code that is causing a problem. It connects and then disconnects rather quickly. It disconnects after the "connections++;" line. Any ideas? AS REQUESTED ALL ...
0
votes
2answers
122 views

Making a PHP server to read a java based client

public class Client { /** * @param args the command line arguments */ public static void main(String[] args) throws IOException { Socket sock = new Socket(); sock.connect(new ...
0
votes
0answers
36 views

what can put linux process managing connection pool into bad state, so it restarts them continously? [closed]

I have an application with pool of connections to MySQL. At some point, in production, every 1-3 seconds some socket is closed. As a result my app restarts this connection. This is pretty big pool ...
-2
votes
2answers
70 views

TCP sockets and connections [closed]

Please correct me if i am wrong. When server runs on a machine, one socket is created which binds itself to the port server is running on and this socket listens for incomming connection. When ...
1
vote
2answers
67 views

Why do my sockets stop transfering?

Ok let me be clear. I'm using TCP and that should mean a connection shouldn't interrupt unless closed or due to network problems. So here's my issue: Utilizing my sockets works perfectly. After 5 - ...
2
votes
2answers
605 views

Python: sending data between two computers via sockets

I am working on a script that would transmit the data between two distinct computers with access to the internet. I am using python's socket standard module. It works fine when I run both client and ...
-1
votes
2answers
116 views

2 client socket without serverSocket

Im trying to build a communication between two Sockets without using any server Socket. I know that server Socket has ServerSocket.accept() method which waits for incoming connections. But when i try ...
1
vote
1answer
94 views

How to kill a connection in nodejs

I have a homework assignment to build an http server using only node native modules. I am trying to protect the server from overloading, so each request is hashed and stores. If a certain request ...
2
votes
2answers
235 views

Can't connect to local mysql server

I get an error trying to connect to my mysql database, I'm quite a PHP/mysql amateur so I hope you guys can help me out since I'm stuck. Warning: mysql_query() [function.mysql-query]: Can't connect ...
0
votes
1answer
90 views

Closing Connection in a Local Proxy Server [closed]

I'm writing a local Proxy Server in C#. At the moment I try to do the Socket-closings. I have a pair of sockets. One communicates with the Browser (BrowserSocket) and the other one communicates with ...
1
vote
0answers
181 views

AS3 XMLSocket unable to detect client-side disconnect

Within a Flex application (not AIR, but Flash player) I have an XMLSocket running, and for the life of me I can't figure out how to detect a client-side disconnect. As in, when I connect to a remote ...
0
votes
1answer
102 views

can't connect Socket when not in same IP range. (subnet)

When running a ServerSocket on a machine A with ip 145.74.217.109 And then trying to connect to machine A using machine B with ip 145.74.219.103 I am unable to connect. But when using machine C with ...
0
votes
2answers
105 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
3answers
126 views

Bad to set socket to null instead of using “.close()” java

The question says it all, is it better to use the ".close()" method instead of just setting the socket to null? But cant the ".close()" method throw an exception, at that time can I just set it to ...
0
votes
0answers
186 views

maximum timeout value in openning socket connection in different platforms

We have an application that uses java Socket class to make connection to its server. We have configurable setting to set read timeout after application open the connection using setSoTimeout. ...
1
vote
0answers
382 views

Connection between Matlab Server and Android Client

I am trying to establish a reliable connection between a matlab running on PC and an Android device (Galaxy tab) My client code is based on the great example in this link. In this example the server ...
-2
votes
2answers
203 views

Android Sockets - My code is working 2.3.6 but not in 4.x

I'm newbie on Android and Java programming and I'm stuck. I was able to create a TCP/IP communication client (Over LAN) which sends text messages on a windows based web server. The code is working ...
1
vote
1answer
634 views

Multi Client Server - receive event goes crazy after client disconnection & async error

edit 40+ views, and only one is able to help, isn't that question worth the upvote ? ;) /edit again I've some issues with socket programming in c#. I've set up a little server with selfmade ...
0
votes
0answers
88 views

connection is different between Android 2.3 and Android 3.2

I can't connect to my socket on Android 3.2 but I can on Android 2.3, I don't know why. What do you think about it?? What is the solution?? This my code for two situation: *I'm using emulator with ...
1
vote
3answers
1k views

Java ServerSocket connection limit?

I was running a few tests with sockets, and I encountered some strange behavior: A ServerSocket will refuse connections after the 50th client Socket connects to it, even if that client socket is ...
0
votes
3answers
837 views

How to send an OBJECT over TCP in java?

I'm writing a program to send an object from one class to another class. Here is a short sample example of my program to represent the problem. As you can see the object to send from server to client ...
0
votes
1answer
158 views

unable to set the timeout for socket connect() call

I have written on client socket program in native code and using it in android application. I am facing one strange problem when making connection with server when the server is not available. When ...

1 2 3 4