problem with Applet Servlet communication
Hi All,
i am very new to java and servlets......
i am using a applet to call a servlet whose .class file is stored in WEB_INF/classes directory of tomcat..
so what URL address i should use in the new URL( ) constructor ?
presently i have done in this manner..
URL urlServlet = new URL("http://l0.0.2.65:8080/myapp.ServletDB");
URLConnection con = urlServlet.openConnection();
where ServletDB is the name of the servlet .class file
whose address is as follows...
C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\myapp\WEB-INF\classes\ServletDB.class
Please help me....
thank you in advance
vijay

