I have read Java Servlet Programming and there is an example about applet-servlet communication. There are three classes in this example. One for an applet, one for a Servlet and one for HTTP(applet-servlet communication). HTTP class is imported in an applet class.
The question is " Which directory in the deployment environment I have to put there 3 classes ?".
Thank you in advance.
The applet class goes into a directory where it can be accessed by the browser; the best choice would be the directory where the HTML file having the applet tag is in. The HTTP class also goes into this directory.
The servlet class goes into the WEB-INF/classes directory.