Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Server Socket and 3-4 android devices as clients. I'm using TCP/IP for communications. Which is the best method. Should I use multiple ports for each client? Or should I use same port. If using same function then how should I identify the communication addressed to different devices?

share|improve this question

2 Answers

up vote 0 down vote accepted

You can use one port. The client can send you its id. If it can't you can look at the clients IP address to workout which one it is.

There are thousands of TCP client/server code examples on the web, but I would start with the sample code which comes with the JDK,

share|improve this answer

No, you do not need several ports.

ServerSocket server = new ServerSocket(port);
while (true)
{
    Socket socket = server.accept();
    // do something with this socket - aka 1 client

    new SomeClientClass(socket);
        InputStream in = socket.getInputStream();
        in.read(byte[]);
        OutputStream out = socket.getOutputStream;
        // out will only write response to its own client.

    // when this new SomeClientClassis created, method returns to this point 
    // in while loop and waits for the next client

}
share|improve this answer
there will be multiple TCP/IP connections simultaneously.... – Akhil K Nambiar Nov 24 '11 at 8:29
1  
well, I have such structure for a service listening to 32 clients connecting "simultaneously". There was not a single problem with this part. "Simulateneously" in our eyes is not the same as in CPU's – Romczyk Nov 24 '11 at 8:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.