Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
2k views

Can't use ServerSocket on Android

I'm trying to listen on a port using ServerSocket on an Android device. I want to be able to connect to this port over WiFi using a computer on the same network. I get no exception when binding it to ...
7
votes
4answers
392 views

java.net.SocketException: Invalid argument: connect

My new laptop (Alienware m17x) throws a java.net.SocketException: Invalid argument: connect when I run the following basic code: Server.java: public static void main (String[] args) throws Exception ...
6
votes
11answers
3k views

Connect two client sockets

Let's say Java has two kind of sockets: server sockets "ServerSocket" client sockets or just "Socket" Imagine the situation of two processes: X = Client Y = Server The server process Y : has a ...
5
votes
4answers
3k views

How does serversocket class serve multiple client connections on same port?

When using a Socket class one is establishing a TCP connection to a server on some port, but on the server the ServerSocket is capable of handling multiple client connections for each accept request ...
4
votes
4answers
3k views

How do I have a socket accept connections only from the localhost (in Java)?

I have a java app (not running in any application container) which listens on a ServerSocket for connections. I would like it to only accept connections which come from localhost. Currently, after a ...
3
votes
3answers
163 views

Benefits of Netty over basic ServerSocket server?

I need to create a relatively simple Java tcp/ip server and I'm having a little trouble determining if I should use something like Netty or just stick with simple ServerSocket and ...
3
votes
2answers
215 views

How to have an XMLSocket on the server side for AIR ServerSocket?

I have two software to create with AIR: a server and a client. Both with AS3 and AIR. I want to avoid having a big architecture with Remote Shared Object, or using BlazeDS, or having to set a Java / ...
3
votes
2answers
160 views

Java SocketServer with multiple clients - StreamCorruptException

The Application I'm writing a client/server application in Java, that communicates by sending objects over sockets using the ObjectStream classes. Each node in the application looks approximately ...
3
votes
1answer
574 views

bind: Socket operation on non-socket

I writing a server and a client and keep getting 'bind: Socket operation on non-socket'. I've researched the heck out of this, have other code that runs in another application and have exhausted 8 ...
3
votes
2answers
914 views

Tomcat6 on Linux uses 100% CPU whenever ServerSocket is idle

Greetings I am running my webapp on Tomcat6 on Java6 on Ubuntu8.04. The main servlet of this app opens a ServerSocket, with the following simple code: ServerSocket serverSocket = new ...
2
votes
1answer
32 views

Transfer Rate behavior of increasing request sizes

I've implemented a simple multi-threaded HTTP server for my programming assignment a couple weeks ago. In this assignment users specified a document size via browser (like localhost:port/250 for a 250 ...
2
votes
3answers
63 views

java socket: listen before accept?

The context: I have a table of banned ip adresses, due to DOS attacks, in a collection somewhere in the memory of my program. I use a TCP server socket, accepting every connection, then I check the ...
2
votes
1answer
173 views

Transfer a file between Android devices?

I'm making a code and I want to send a mp4 file to another Android device. I have reached to connect both Androids via Wifi and write from one a simple for cycle from 1-20 and the other Android device ...
2
votes
2answers
105 views

Finding Open Port TCP Communication

I'm writing a Java application like AIM where I want a lookup server to help two clients connect to each other with the ServerSocket class. Unfortunately a serversocket needs an open port or it will ...
2
votes
1answer
128 views

How to detect the disconnect event [closed]

Possible Duplicate: Java: How do detect a remote side socket close? I'm writing a small program using java with Socket and ServerSocket. I have a Server and some Clients, When User(Client) ...
2
votes
2answers
120 views

Networking issue from java ServerSocket to iphone (only on 3g mode)

I am experiencing weird behavior: I have a server, based on a java ServerSocket that serves TCP request that are send from iPhone device. I have noticed that when I use the iPhone is connected via ...
2
votes
1answer
64 views

Finding a list of possible ServerSockets

I want to program a game that involves a client-server option for a network. For this, I need to be able to get a list of all people that are hosting a server on their computer but the Socket class ...
2
votes
3answers
937 views

Unsecured Bluetooth connection in Android

I have been challenged by a professor to develop a little Bluetooth Demo app on Android. I knew nothing about developping for Android until 2 weeks ago when he gave me that challenge. I'm also quite ...
2
votes
1answer
198 views

Check number of connections in the queue of a server socket in Java

I have a Java program that creates a server socket and accepts connections from various clients. I am interested in finding out the number of connections that are in queue (waiting to be processed ...
2
votes
2answers
108 views

How can I Always open server?

I have code (my c++ socket server) but I don't know How can I always open. My server will close. when It already send to client It will close itself. But I want it to wait others client and never ...
2
votes
2answers
256 views

ServerSocket blocked by thread seeking input from console

Can anyone give me insight into why the ServerSocket constructor never returns in the new thread? (I never see the "Opened" message printed to the console.) It seems the main thread prevents the ...
2
votes
1answer
88 views

How to find out on which internet addresses a java program can listen

My program needs to listen incoming socket connections (lets agree on port 8765), but it doesn't know which addresses it can bind on a particular machine. Of, course, it could simply to listen to all ...
2
votes
2answers
548 views

server socket hosting

To test a client/server networking application using socket programming, Is there a free hosting company that would allow me to open Server sockets and listen on a port?
1
vote
0answers
58 views

Socket only works once

I'm coding a little program that checks an online store for new items in a specific department. When it does find that a new item has been added, it's supposed to send that info to a simple IRC-bot, ...
1
vote
1answer
39 views

Error in receiving data in C# client socket from java server socket

I am creating a Socket connection with C# client socket and Java Server Socket. When i am sending data from client socket,the server socket is properly receiving that data. But when i am trying to ...
1
vote
1answer
37 views

How to inject a worker class into a ServerSocket implementation?

I'm looking to create a generic TCP/IP server using ServerSocket that can be used by multiple projects my team is working on. The hurdle I'm facing is how best to inject a Runnable worker class since ...
1
vote
2answers
52 views

Server that receives a sequence of integers

I'm learning Sockets programming in Java. I'm trying to solve a problem that consists in: Having a server that accepts a connection from one client on a time. That part is solved. Now I want the ...
1
vote
2answers
61 views

Java Socket programming

I have two questions in java socket programming. this will be stand alone application and will be built only in J2SE. 1) Is it possible to read/write simultaneously via same port in my case since it ...
1
vote
1answer
101 views

How to implement “Round Robin” Load Balancing Web Server in Java

For a homework project I'm looking to implement "Round Robin" Load Balancing in Java on a very simple HTTP web server. Round Robin in this case would mean one HTTP request per port. Say I have a ...
1
vote
2answers
156 views

Usage of getaddrinfo() with AI_PASSIVE

The getaddrinfo() function not only allows for client programs to efficiently find the correct data for creating a socket to a given host, it also allows for servers to bind to the correct socket - in ...
1
vote
2answers
28 views

Socket server: should provide shell like interface

I have web server implemented using sockets (build a directory list service). I am not sure how to provide a text (shell‐like) interface. This is basically required since user can type in commands ...
1
vote
1answer
60 views

Using other ports on CloudBees

I'm trying to write a multiplayer realtime game and run it on CloudBees (the client side is an applet, the server side a java web application). Is it possible to give the server permission to listen ...
1
vote
2answers
107 views

ServerSocket File Transmission Missing Bytes

Issue I have confirmed via a packet sniffer that all data coming from the client is being totally sent, and that the data being received by the server is complete as well, however there is a slight ...
1
vote
1answer
68 views

Java socket system address

How to identify different system connected with same modem or sharing same internet connection? I applied getHostAddress() and 'getHostName()' on Connection(this is socket.getInetAddress()) but it ...
1
vote
1answer
135 views

Is calling ServerSocket.close() sufficient enough to close a port?

I have some java code that looks similar to this: private void startServer() throws IOException { URLClassLoader classloader = null; System.out.println("Opening server socket for ...
1
vote
2answers
286 views

Java ServerSocket WebSocket reply

I am trying to create my own WebSocket Server with Java. When my client connects, I get following request: (14): GET / HTTP/1.1 (18): Upgrade: WebSocket (19): Connection: Upgrade (20): Host: ...
1
vote
3answers
135 views

Socket programming: The Server

Ok so I've been trying to teach myself some socket programming. I wrote myself a little C# application with an async server and I understand most of it, except for the following: So the server has a ...
1
vote
2answers
134 views

Detecting graceful shut downs of sockets in python

I'm trying to determine if a server socket was shut down gracefully or not in python. The program received files and if some error occurs during the send the file should be removed. I know your ...
1
vote
1answer
542 views

Android - BitmapFactory.decodeByteArray returns null

I am trying to transfer an image from pc to android using socket connection. I am able to receive the data from pc to phone but when I pass the byte[] to BitmapFactory, it is returning null. Also ...
1
vote
2answers
164 views

Windows posix sockets performance

I am looking for information on Windows network programming. Mainly how to get a single executable to cope with 1000 connections. We use select() FD_ISSET etc on unix and this works very quick. On ...
1
vote
1answer
66 views

Does anyone know of any HTTP conformance testing suite around?

Me and my friends are building an HTTP server as an university project. But we have sort hit a snag when it came to the testing... We have done the performance tests but we couldn't find any tool for ...
1
vote
4answers
124 views

Socket communication of server with two different applications, Java

I am writing the code for a server that would help two different applications in different platforms communicate with each other. To visualize it a bit it would be something like this : ...
1
vote
0answers
328 views

Android BluetoothServerSocket accept encounter an exception but endpoint device has connected?

I'm developing a program on Android to establish connections between my phone and outer devices. The code that establishes ServerSocket and accept connection from peers is like this: while ...
1
vote
5answers
1k views

Java Server - Multiple ports?

I'm about to program a server but am wondering if what I have in mind is possible. My program will be outputting to multiple clients on multiple ports - each port can be accessed by multiple clients. ...
1
vote
3answers
914 views

Designing “Scalable Multi Threaded Socket Push Server” in .Net

We are at the beginning of designing Scalable Multi Threaded Socket Push Server in .Net which will initially handle 10K clients per node. Since designing this can be very complex, it would really help ...
1
vote
2answers
625 views

Java multithreaded server - each connection returns data. Processing on main thread?

I am writing a client with an integrated server that should wait indefinitely for new connections - and handle each on a Thread. I want to process the received byte array in a system wide available ...
1
vote
0answers
1k views

Android Bluetooth Server socket will be blocked on accept() if it processes more than one conntion

I have studied the android bluetooth example. What I'm confused is that other devices has sent a connection request, and the server is just blocked so long without accepted if previous connection ...
1
vote
2answers
142 views

Socket transfering a file

I have a Java server class like this: ServerSocket servsock = new ServerSocket(63456); boolean read = false; while (!read) { Socket sock = servsock.accept(); int length = 1024; byte[] ...
1
vote
1answer
90 views

Using a Java ServerSocket for multiple Mobile Platforms?

Is it possible for me to use A Java Programme that accepts Sockets using a ServerSocket to accept Sockets from multiple mobile platforms? e.g. Can I use my ServerSocket to connect to: An Android ...
1
vote
2answers
1k views

Reading POST data from html form sent to serversocket

i try to write simplest possible server app in Java, displaying html form with textarea input, which after submitting gives me possibility to parse xml typed in that textarea. For now i build simple ...

1 2 3