*/
public void init(ServletConfig config) throws ServletException {
super.init(config);
try {
_server = new WikiServerServlet(getServletContext().getRealPath("/"), org.dbwiki.lib.IO.loadProperties(new File(getServletContext().getRealPath("/resources/configuration/server/config"))));
} catch (Exception e) {
throw new ServletException(e);
}
}