All Questions
4 questions
0
votes
0
answers
53
views
Assistance using SOCKET.IO to connect a JAVA Client and a HTML/JAVASCRIPT Server
I'm working on a JAVA system that needs to pass a string over to a website so that the website can display it in the of it. I've done some research and for my issue the SOCKET.IO extension seems to ...
0
votes
1
answer
122
views
Java IO Socket Webserver - Can't read the POST-message before sending the Output Stream - HTML File
I've got the following problem:
I'm trying to write a simple webserver in Java, which can host HTML-Files and handle the POST things of formulars in the .html File.
The problem is that the ...
1
vote
0
answers
577
views
Websocket Java sending data to client more than 65536 bytes, size exceeds in browser
//op - OutPutStream
byte[] textBytes = strText.getBytes("UTF-8");
op.write(0x81);
if(textBytes.length < 127)
{
op.write(textBytes.length);
}
else
if(textBytes....
-1
votes
1
answer
347
views
Porting java sockets client to HTML5 socket.io
I have a multi-player game that uses Java sockets, the server is a standard Java application and the client is a Java applet that runs in the web-browser.
Now since last Java's update (Java 7 update ...