Java Applet and Javascript message passing
I did this quite a while a ago, thought I should share this.
To call a js function foo from java applet :
String [] stringArgs = new String[2];
stringArgs[0] = "first arg from Java";
stringArgs[1] = "second arg from Java";
mainWindow.call("foo", stringArgs);
To call a function foo() in a java applet named bar, do the following in javascript:
document.bar.foo(param1, param2, ....) ;
