How do I securely submit "Username" and "Password" from an applet to a server side php3 program?
Created May 4, 2012
Rahul kumar Gupta One way to do this operation is that to make an applet to serverside program calls the program from applet using the Https protocol, for example:
URL servlet = new URL("https://yourservername/yourprogramname?param=value&......");
AppletContext ac = getAppletContext();
ac.showDocument(servlet);
URL servlet = new URL("https://yourservername/yourprogramname?param=value&......");
AppletContext ac = getAppletContext();
ac.showDocument(servlet);