// Get the default handler and add it in the map under null and empty
// to act as the default.
//
SolrRequestHandler handler = get(RequestHandlers.DEFAULT_HANDLER_NAME);
if (handler == null) {
handler = new StandardRequestHandler();
register(RequestHandlers.DEFAULT_HANDLER_NAME, handler);
}
register(null, handler);
register("", handler);
}