applet.html with the only thing to modify is 1.2.3.4 with the real IP of your VMS host. This works with IE 6 =====================================
===================================== The same for Firefox =====================================
===================================== applet.html with also modify only 1.2.3.4 for me this works with IE 6 and with Firefox. =====================================
===================================== the Test.java used for testing the EmpClient. Compile with: javac Test.java and run with: java Test It will prompt for the host and port and then for some starting characters for the employee. Then it will list the emplyees returned by the service. ===================================== import java.io.BufferedReader; import java.io.InputStreamReader; public class Test { public static void main (String [] args) { try { BufferedReader in = new BufferedReader (new InputStreamReader (System.in)); System.out.print("Host:"); String host = in.readLine(); System.out.print("Port:"); int port = Integer.parseInt(in.readLine()); EmpClient client = new EmpClient (host , port); client.open(); for (;;) { System.out.print("Enter Employee Name (# = exit):"); String employee = in.readLine(); if (employee.equals("#")) break; client.initEmployeeRead(employee); for (;;) { String name = client.readNextEmployee(); if (name == null) break; System.out.println(name); } } client.close(); } catch (Exception e) { e.printStackTrace(); } } } =====================================