Wrox Home  
Search P2P Archive for: Go

  Return to Index  

servlets thread: how can i communicate JApplet from servlet


Message #1 by "Pajani Arjunan" <shajan76@y...> on Thu, 8 Nov 2001 05:53:07
hi,

   i have one Japplet, it need some param.

   from my servlet, i get the parameter from MS Access.

   after that i have to call that applet.

   but it gives myapplet.class not  found why?
  this is my servlet code  name, col, row are the parameter, the values 
are correct.

out.println("<applet code=\"../servlets/Crop.class\" width=\"600\" 
height=\"600\">");
        out.println("<param name=\"imfile\" value="+name+">");
        out.println("<param name=\"col\" value="+ col +">");
        out.println("<param name=\"row\" value="+ row+">" );
        out.println("</applet>");
   		
   plse help me. urgent , thanks in advance.

  Return to Index