Re: servlet to servlet communication

2002-07-13 Thread Swapnonil Mukherjee
Hi Hiren You can try and use url re-writing like this RequestDispatcher disp=getServletContext ().getRequestDispatcher ("/servlet/Your-Sceond-Servlet?parameter=value"); disp.forward (req,res); ___ To unsubscribe, send emai

Re: applet lists or help

2002-07-13 Thread Swapnonil Mukherjee
Hi Travis, javax.swing.JPanel is a class contained in the javax.swing package which is found on JRE1.2 and later. If you want to use javax.swing package with applets,which are really distributed applications, your browser must be java enabled with the latest JRE (Java Runtime Environment). The er