0
votes
0answers
29 views

Library for asynchronous client to client messaging [closed]

I am currently developing an online game where two players can play against each other (something like Who Wants to Be a Millionaire?). And I would like to implement an asynchronous service so those ...
0
votes
3answers
2k views

Java vs Javascript for Web-based games

With all the recent interest in developing HTML5 apps and games, and I am curious why all the focus is on Javascript, and not on Java. Minecraft is a great example of what can be accomplished in a ...
5
votes
4answers
305 views

What version of Java should I target for applets?

I recently deployed an applet that seems to require Java 6 Update 24. I assume the reason for this requirement is the matching JDK version I used to create the applet (I am new to Java). The fact ...
9
votes
4answers
816 views

Is there a good reason I shouldn't use a java applet for a game?

I want to make a multiplayer browser-based game. The nice thing about using an applet is that I can make the client and the server in the same language (java/closure/scala/etc). I know there's html5 ...