Communicating with an applet

I want to write an applet to run on computer A, that applet will communicate with another computer B to load data from it. Then i want my applet to be able to update or add information on the ones loaded from computer B and to send these updates to computer A. Can u tell me what are the steps that i must follow on both computers to implement this application. Can u give me or tell me where can i find an example that does such that thing. Thank u. By the way, i wrote an applet that is not opening in Internet Explorer, but is working well with the appletviewer tool, i guess u can tell me what can i do.
Please, i must implement this communication problem before 10 days from now, so i hope that u'll help me.
Thanx

sssshhhh
[752 byte] By [Sami Hitti] at [2007-11-15 20:13:51]
# 1 Re: Communicating with an applet
Sorry, can't help you with the communications problem. But I had a similiar problem to your latter one some time ago. An applet that extended the JApplet class couldn't be started with IE. When I changed the superclass to Applet, everything worked normal again.
musch at 2007-11-10 2:53:27 >
# 2 Re: Communicating with an applet
About your communication problem, i can tell you
so far :
Without signing the applets, you can only connect to the server the applets are comming from.
Thus, A would open a connection to its server (and never close it), and so would B do...
Doing so enables you to have A & B talking without having to sign the code. The only drawback is of course that you can't do it with 1000's of clients ;-)

Hope this helps, if you have more questions, feel free to ask.
gougoul at 2007-11-10 2:54:28 >