javascript mode will not work with 3D. "SocketTimeoutException". any advice?
in
Processing with Other Languages
•
1 year ago
the full error list:
java.net.SocketTimeoutException: Read timed out
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:129)
at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:258)
at java.io.BufferedInputStream.read(BufferedInputStream.java:317)
at processing.mode.javascript.Worker.handleClient(BasicServer.java:401)
at processing.mode.javascript.Worker.run(BasicServer.java:364)
at java.lang.Thread.run(Thread.java:662)
java.net.SocketTimeoutException: Read timed out
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:129)
at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:258)
at java.io.BufferedInputStream.read(BufferedInputStream.java:317)
at processing.mode.javascript.Worker.handleClient(BasicServer.java:401)
at processing.mode.javascript.Worker.run(BasicServer.java:364)
at java.lang.Thread.run(Thread.java:662)
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:129)
at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:258)
at java.io.BufferedInputStream.read(BufferedInputStream.java:317)
at processing.mode.javascript.Worker.handleClient(BasicServer.java:401)
at processing.mode.javascript.Worker.run(BasicServer.java:364)
at java.lang.Thread.run(Thread.java:662)
java.net.SocketTimeoutException: Read timed out
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:129)
at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:258)
at java.io.BufferedInputStream.read(BufferedInputStream.java:317)
at processing.mode.javascript.Worker.handleClient(BasicServer.java:401)
at processing.mode.javascript.Worker.run(BasicServer.java:364)
at java.lang.Thread.run(Thread.java:662)
so basically, I can get any 2d app to work just fine but any sketch with 3D will not run. it pulls up the webpage , creates the text and graphics but the place where the sketch should be is blank.
Not really sure where to start on this one. any help would be great.
win 7 64.
processing 2.0a5
IE9
**update** just in case it matters, all the sketch does right now is draw a 3d box and rotate it 10 degrees. nothing else or complicated
**update** 4-23-12
Going from processing javascript mode and running directly to web does not work for as of today. However, working in standard mode and exporting an applet does work perfectly. So I am just going to work on embeding the applet for my needs at the moment. I will come back to this eventually however.
1