News:

Choose a design and let our professionals help you build a successful website   - ITAcumens

Main Menu

Working with a Server-Side Application

Started by sukishan, Jul 15, 2009, 03:01 PM

Previous topic - Next topic

sukishan

Applets, like other Java programs, can use the API defined in the java.net package to communicate across the network. The only difference is that, for security reasons, the only host an applet can communicate with is the host it was delivered from.


--------------------------------------------------------------------------------
Note:  Depending on the networking environment an applet is loaded into, and depending on the browser that runs the applet, an applet might not be able to communicate with its originating host. For example, browsers running on hosts inside firewalls often cannot get much information about the world outside the firewall. As a result, some browsers might not allow applet communication to hosts outside the firewall.
--------------------------------------------------------------------------------

It's easy to find out which host an applet came from. Just use the Applet getCodeBase method and the java.net.URL getHost method, like this:

String host = getCodeBase().getHost();

Once you have the right host name, you can use all the networking code that is documented in the Custom Networking trail.
A good beginning makes a good ending