What protocol it use? Can I use RMI or socket within applet?
"Knowing is not enough, you must apply... Willing is not enough, you must do."
--Bruce Lee
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35220
7
posted
0
Applets can use any communication channel any Java code can use - HTTP, sockets, web services, JMS, email, RMI, ...
Of course, an applet are only allowed to connect to the host where they were served from, so if they need to access some other server then they'll need to be signed, or the local security policy altered. See HowCanAnAppletReadFilesOnTheLocalFileSystem for more details.