My experience on web technologies aren\'t good so I want to know if this is possible from you experts.
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 clo
I have the following snippet of code : if (servsock == null) { System.out.println(\"HELLO1!\"); servsock = new ServerSocket(63456, 10);
hello guy\'s just written a program for Client and server. While i put \"127.0.0.1\" or \"localhost\" it works perfectly but while i assign my own ip or may be some of my friend ip.
I need a simple client-server commu开发者_运维知识库nication in order to implement unit-test.
I am writing a client with an integrated server that should wait indefinitely for new connections - and handle each on a Thread.
I\'m writing a networking program in Java. I use ServerSocket and Socket objects to send and receive messages using TCP. My program runs fine if run for a short time however if I run it for a longer t
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 ex
I have a Java server class like this: ServerSocket servsock = new ServerSocket(63456); boolean read = false;
I made a custom http server using java. It runs properly on XP machines and when I open conne开发者_运维百科ction to that server from a different machine using its IP address and port it used to work.