/** Applet is being displayed */
 public void start() {
   // Tell all pages to start talking to the server
   Enumeration e = pages.elements();
   while (e.hasMoreElements()) {
     SOAPMonitorPage pg = (SOAPMonitorPage) e.nextElement();
     if (pg != null) {
       pg.start();
     }
   }
 }