220221222223224225226227228229230
Enumeration sE=ctx.getServletNames(); while( sE.hasMoreElements() ) { try { String sN=(String)sE.nextElement(); Handler sw=ctx.getServletByName( sN ); sw.reload(); } catch( Exception ex ) { log( "Reload exception: " + ex); } }