*/
public static void autoDedectImpl(Servlet servlet) {
try {
// class to detect the running server
ServerDedec det = new ServerDedec(servlet);
// load injector
in = Guice.createInjector(new StandardModule(), det
.getModuleClass());
// set alternativ_impl to true
alternativ_impl = true;
// set websocket support based on XML
websocketSupport = det.getWebSocketSupport();
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (ServerNotSupportedException e) {