if (file.indexOf (".") < 0)
file = "rabbit.meta." + file;
Class<? extends MetaHandler> cls =
Class.forName (file).asSubclass (MetaHandler.class);
MetaHandler mh = null;
mh = cls.newInstance ();
mh.handle (header, htab, con, tlProxy, tlClient);
con.getCounter ().inc ("Meta pages handled");
// Now take care of every error...
} catch (NoSuchMethodError e) {
error = "Given metahandler doesnt have a public no-arg constructor:"
+ file + ", " + e;