2 |
For integration applications:
-
multiple Java applets and JavaScript functions on one HTML page and in one Tango session
-
JavaScript code used as a convenient integration environment
-
named channels for different applications
-
arbitrary messages exchanged between Java applets (fast/scripted assembly of customized applications)
-
String messages used for functions handled directly by JavaScript:
-
sendString( channel, String ) / receiveString( channel, String )
-
opaque byte arrays used for communicating applets:
-
sendBytes( channel, byte[ ] ) / receiveBytes( channel, byte[ ] )
|