1. Transfering multiple parameters in the applet-servlet communication stackoverflow.comI am implementing an applet ---servlet communication. There are two parameters that need to be sent by applet to the servlet. I am not sure can I implement the ... |
2. how to send parameters(values) from applet to JSP ... coderanch.com |
3. Send parameters to an applet coderanch.com |
4. Applet parameters using JSP coderanch.com |
5. A parameter from servlet to applet coderanch.comHey all. I'm having a bit of a dilema. I have an applet whose init() contains: public void init {... resized = getParameter("resized"); System.out.println("The value of resized=" + resized); if (resized != null)loadBaseApplet(); else getContentPane().add(getLoginBox(), BorderLayout.CENTER); ... } Here's how the servlet gets called from within the applet... public void resizeApplet() { resized = "t"; try { getAppletContext().showDocument(new URL("http://localhost:8080/servlet/ResizeApplet"), "_self"); } ... |
6. transferring 200 parameters from an applet to a JSP coderanch.com |
7. Help!!! Passing parameters from applet to servlet. coderanch.com |
8. passing parameters between servlets and applets coderanch.com |
9. Passing parameters from Applet to JSP forums.oracle.com |