Java Applet Programming Question:

How do you communicate in between Applets and Servlets?

Tweet Share WhatsApp

Answer:

We can use the java.net.URLConnection and java.net.URL classes to open a standard HTTP connection and "tunnel" to the web server. The server then passes this information to the servlet in the normal way. Basically, the applet pretends to be a web browser, and the servlet doesn't know the difference. As far as the servlet is concerned, the applet is just another HTTP client.

Download Java Applet PDF Read All 26 Java Applet Questions
Previous QuestionNext Question
How will you communicate between two Applets?What is the base class for all swing components?