Networking game

Hi there.Can you please help me!!I am doing a 2 players scrabble game using java applets. The game will be an online one. Can anyone help me to tell me how to implement this type of game in java applets.Thanks to you all
[248 byte] By [Zaheeda] at [2007-10-1 19:50:54]
# 1
well you start by writing some requirements, outline the features, use cases, etc., then you code it piece by piece, then you test it, then deploy it, then you play it!
SoulTech2012a at 2007-7-11 16:15:48 > top of Java-index,Other Topics,Java Game Development...
# 2
Creating Applets: http://java.sun.com/docs/books/tutorial/applet/index.htmlNetworking: http://java.sun.com/docs/books/tutorial/networking/TOC.htmlYou should be abe to figure it out using those two references.
wmelchera at 2007-7-11 16:15:48 > top of Java-index,Other Topics,Java Game Development...
# 3
You cannot stablish direct connections between 2 applets instances, so you must use a tunnel, bridge or similar in the server that holds the applet to manage indirect connections.
windupa at 2007-7-11 16:15:48 > top of Java-index,Other Topics,Java Game Development...