Tagged Questions
1
vote
0answers
19 views
High Performance Messaging between Java Client and Java 'Back End'
I have a basic Java Messaging application that sends JAVA objects to a remote server for processing. I leverage Spring support on both sides of the wire and use ActiveMQ as my JMS provider. It works ...
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 ...
1
vote
2answers
28 views
readline() doesn't read from socket
s = new Socket(InetAddress.getByName(address), port);
Thread.sleep(250);
DataOutputStream outToServer = new DataOutputStream(s.getOutputStream());
BufferedReader inFromServer = new ...
-2
votes
1answer
25 views
Android send data via socket
I would like to send a simple date through tcp. I working with threads, but I dont know why but when i try to run my code that is stop imediatelly here is that. I have already set the permissons as ...
-1
votes
0answers
15 views
Getting problems with client-server updates (LAG)
Hi folks I'm new here and it will be hard to explain myself any way I'll try.
I have been a developing games/android app/ desktop and web applications by 2 years now I'm still a bachelor student so ...
-2
votes
0answers
31 views
Java How to kill Socket connection attempt
I am using sockets in my Java application, and it may be the case that the server is not online, I have found out that strange bugs are happening.
Since there is no Java implementation which forces a ...
0
votes
1answer
22 views
java socket sending and receiving
since hours I am thinking about how I should use Java Sockets to send and receive data. I hope you can help me finding a good way to do it.
I have build a Server/Client structure where the client ...
0
votes
1answer
25 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
38 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 ...
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
47 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
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 ...
0
votes
3answers
36 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
...
0
votes
0answers
54 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
45 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
1answer
26 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
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
2answers
32 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 ...
-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 ...
0
votes
2answers
25 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
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 ...
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
0answers
32 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
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
vote
3answers
35 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
2answers
33 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 ...
0
votes
1answer
58 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
37 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 ...
0
votes
1answer
31 views
Deploy simple server code to Heroku
I recently visited heroku.com site and tried to deploy my first java program there , I actually had a good start using their java deployment tutorial, and had it run ok. now I have a server code which ...
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 ...
0
votes
0answers
39 views
Cannot get text value from BufferedReader [closed]
I have created an Android TCP server as well as a client. Both can communicate fine (in the sense that sent messages are registering).
Below, is the code I use to send a message from the client to ...
0
votes
3answers
36 views
IOException after thousands of socket creation calls
Why IOException after thousands of socket creation calls?
I did a simple Server code (Java) which accepts connections then creates a thread reads the socket and sends back another character to the ...
0
votes
2answers
18 views
Android: Socket-Connection causes lags and a lot of GC action
This is a Thread with a Socket-connection.
The Server sends random int numbers to this socket (every 10 ms).
The Problem is, that after a while the are huge lags of receiving the data and LogCat ...
0
votes
0answers
41 views
TCPConnection refusing conection
I have a standard Client/Server model and the server successfully binds but the Client can not connect and keeps saying the connection has been refused. (stacktrace above client code)
I have put my ...
0
votes
1answer
48 views
Socket Timeout Issue: android client reading data from pc server
I'm new to android, java and socket programming so of course I'm trying to merge all three!
I'm creating a desktop based java server which will simply send a short string to an android app(client).
...
0
votes
1answer
41 views
DatagramSocket Broadcast Behavior (Windows vs. Linux)
Backstory:
I have a wireless device which creates it's own SSID, assigns itself an IP address using auto-ip, and begins broadcasting discovery information to 255.255.255.255. (unfortunately, it does ...
0
votes
1answer
67 views
Start two threads in the same time but avoid using join after, this is for android program
i have two threads starting at the same time in my android program for downloading some packets.
ServerIP = WifiServer;
Thread thread22 = new Thread (new CallDownloader(fileToReceive, ServerIP, ...
0
votes
0answers
19 views
Getting ConnectException intermittently from HSQLDB
We have a setup of 2 tomcats running in distributed mode
which connect to 2 HSQLDB running in HA mode on both the nodes.
The Tomcat Logs are showing ConnectExceptions at certain intervals. An ...
0
votes
3answers
43 views
How to keep track of the active clients in a multi client server application?
I want to know if there's a way to know the clients that are all connected to a server at any point of time. I am using Sockets/Java.
i.e If there are 'n' number of clients to whom the server is ...
0
votes
1answer
47 views
which stream should I use to transfer a custom file -like jpeg or mp3- over the network in java?
I've tried to write a server and a client in java, to transfer a file. but the received file is weird and look like it's filled with strange bytes and it won't open with any application, however its ...
2
votes
1answer
138 views
Android BluetoothSocket::connect() throws an exception
I can not initiate the bluetooth connection between Java server(using bluecove 2.1.1 on Windows 7 x64, external bluetooth dongle) and Android client(OS version 2.3.6).
Device discovery works ...
3
votes
2answers
387 views
How to know the end of FTP Welcome message
My problem is that I'm creating a FTP client, and so far its working flawlessly besides one minor detail, that keeps bugging me.
I need to know how many lines the FTP welcome message spans over... And ...
1
vote
2answers
2k views
check if a server socket is open on the other side
I would check if a server socket placed in the server is open. In the client when I create the socket Socket sock = new Socket(host,port) I check if it's open doing:
if(sock == null)
...
12
votes
2answers
9k views
What is the difference between connection and read timeout for sockets?
3 questions:
1) What is the difference between connection and read timeout for sockets?
2) What does connection timeout set to "infinity" mean? In what situation can it remain in an infinitive loop? ...
4
votes
4answers
3k views
Efficiency of while(true) ServerSocket Listen
I am wondering if a typical while(true) ServerSocket listen loop takes an entire core to wait and accept a client connection (Even when implementing runnable and using Thread .start())
I am ...
0
votes
1answer
101 views
listenin a port from appplication server
First I have a JSF application that make some sort of searches from database, but on the other hand I have been listening port for this purpose also, I start a thread that listens that port in my ...
20
votes
5answers
26k views
Does a TCP socket connection have a “keep alive”?
I have heard of HTTP keep-alive but for now I want to open a socket connection with a remote server.
Now will this socket connection remain open forever or is there a timeout limit associated with it ...
10
votes
1answer
12k views
How to send and receive serialized object in socket channel
I want to transmit a serialized object over a socket channel.
I want make "Hi friend" string as serialized object and then write this object in socket channel while in the other end i want to read the ...
51
votes
13answers
11k views
Why is it impossible, without attempting I/O, to detect that TCP socket was gracefully closed by peer?
As a follow up to a recent question, I wonder why it is impossible in Java, without attempting reading/writing on a TCP socket, to detect that the socket has been gracefully closed by the peer? This ...
