How do I securely submit “Username” and “Password” from an applet to a server side php3 program?
Location: http://www.jguru.com/faq/view.jsp?EID=137150 Created: Aug 28, 2000 Modified: 2000-09-04 07:37:38.1 Author: Rahul kumar Gupta (http://www.jguru.com/guru/viewbio.jsp?EID=4809) Question originally posed by Bhuvan Misra (http://www.jguru.com/guru/viewbio.jsp?EID=3912 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);