Search in sources :

Example 11 with DefaultHandler

use of org.eclipse.jetty.server.handler.DefaultHandler in project jetty.project by eclipse.

the class ServerConnectorTest method testReuseAddress_Default.

@Test
public void testReuseAddress_Default() throws Exception {
    Server server = new Server();
    ServerConnector connector = new ServerConnector(server);
    connector.setPort(0);
    server.addConnector(connector);
    HandlerList handlers = new HandlerList();
    handlers.addHandler(new ReuseInfoHandler());
    handlers.addHandler(new DefaultHandler());
    server.setHandler(handlers);
    try {
        server.start();
        URI uri = toServerURI(connector);
        String response = getResponse(uri);
        assertThat("Response", response, containsString("connector.getReuseAddress() = true"));
        assertThat("Response", response, containsString("connector._reuseAddress() = true"));
        // Java on Windows is incapable of propagating reuse-address this to the opened socket.
        if (!OS.IS_WINDOWS) {
            assertThat("Response", response, containsString("socket.getReuseAddress() = true"));
        }
    } finally {
        server.stop();
    }
}
Also used : HandlerList(org.eclipse.jetty.server.handler.HandlerList) Matchers.containsString(org.hamcrest.Matchers.containsString) URI(java.net.URI) DefaultHandler(org.eclipse.jetty.server.handler.DefaultHandler) Test(org.junit.Test)

Example 12 with DefaultHandler

use of org.eclipse.jetty.server.handler.DefaultHandler in project jetty.project by eclipse.

the class ServerConnectorTest method testReuseAddress_True.

@Test
public void testReuseAddress_True() throws Exception {
    Server server = new Server();
    ServerConnector connector = new ServerConnector(server);
    connector.setPort(0);
    connector.setReuseAddress(true);
    server.addConnector(connector);
    HandlerList handlers = new HandlerList();
    handlers.addHandler(new ReuseInfoHandler());
    handlers.addHandler(new DefaultHandler());
    server.setHandler(handlers);
    try {
        server.start();
        URI uri = toServerURI(connector);
        String response = getResponse(uri);
        assertThat("Response", response, containsString("connector.getReuseAddress() = true"));
        assertThat("Response", response, containsString("connector._reuseAddress() = true"));
        // Java on Windows is incapable of propagating reuse-address this to the opened socket.
        if (!OS.IS_WINDOWS) {
            assertThat("Response", response, containsString("socket.getReuseAddress() = true"));
        }
    } finally {
        server.stop();
    }
}
Also used : HandlerList(org.eclipse.jetty.server.handler.HandlerList) Matchers.containsString(org.hamcrest.Matchers.containsString) URI(java.net.URI) DefaultHandler(org.eclipse.jetty.server.handler.DefaultHandler) Test(org.junit.Test)

Example 13 with DefaultHandler

use of org.eclipse.jetty.server.handler.DefaultHandler in project jetty.project by eclipse.

the class ServerConnectorTest method testReuseAddress_False.

@Test
public void testReuseAddress_False() throws Exception {
    Server server = new Server();
    ServerConnector connector = new ServerConnector(server);
    connector.setPort(0);
    connector.setReuseAddress(false);
    server.addConnector(connector);
    HandlerList handlers = new HandlerList();
    handlers.addHandler(new ReuseInfoHandler());
    handlers.addHandler(new DefaultHandler());
    server.setHandler(handlers);
    try {
        server.start();
        URI uri = toServerURI(connector);
        String response = getResponse(uri);
        assertThat("Response", response, containsString("connector.getReuseAddress() = false"));
        assertThat("Response", response, containsString("connector._reuseAddress() = false"));
        // Java on Windows is incapable of propagating reuse-address this to the opened socket.
        if (!OS.IS_WINDOWS) {
            assertThat("Response", response, containsString("socket.getReuseAddress() = false"));
        }
    } finally {
        server.stop();
    }
}
Also used : HandlerList(org.eclipse.jetty.server.handler.HandlerList) Matchers.containsString(org.hamcrest.Matchers.containsString) URI(java.net.URI) DefaultHandler(org.eclipse.jetty.server.handler.DefaultHandler) Test(org.junit.Test)

Example 14 with DefaultHandler

use of org.eclipse.jetty.server.handler.DefaultHandler in project jetty.project by eclipse.

the class JettyHttpServerProvider method createHttpServer.

@Override
public HttpServer createHttpServer(InetSocketAddress addr, int backlog) throws IOException {
    Server server = _server;
    boolean shared = true;
    if (server == null) {
        ThreadPool threadPool = new DelegatingThreadPool(new QueuedThreadPool());
        server = new Server(threadPool);
        HandlerCollection handlerCollection = new HandlerCollection();
        handlerCollection.setHandlers(new Handler[] { new ContextHandlerCollection(), new DefaultHandler() });
        server.setHandler(handlerCollection);
        shared = false;
    }
    JettyHttpServer jettyHttpServer = new JettyHttpServer(server, shared);
    jettyHttpServer.bind(addr, backlog);
    return jettyHttpServer;
}
Also used : HttpServer(com.sun.net.httpserver.HttpServer) HttpsServer(com.sun.net.httpserver.HttpsServer) Server(org.eclipse.jetty.server.Server) QueuedThreadPool(org.eclipse.jetty.util.thread.QueuedThreadPool) QueuedThreadPool(org.eclipse.jetty.util.thread.QueuedThreadPool) ThreadPool(org.eclipse.jetty.util.thread.ThreadPool) ContextHandlerCollection(org.eclipse.jetty.server.handler.ContextHandlerCollection) HandlerCollection(org.eclipse.jetty.server.handler.HandlerCollection) ContextHandlerCollection(org.eclipse.jetty.server.handler.ContextHandlerCollection) DefaultHandler(org.eclipse.jetty.server.handler.DefaultHandler)

Example 15 with DefaultHandler

use of org.eclipse.jetty.server.handler.DefaultHandler in project Openfire by igniterealtime.

the class AdminConsolePlugin method startup.

/**
     * Starts the Jetty instance.
     */
public void startup() {
    restartNeeded = false;
    // Add listener for certificate events
    certificateListener = new CertificateListener();
    CertificateManager.addListener(certificateListener);
    // the number of threads allocated to each connector/port
    int serverThreads = JiveGlobals.getXMLProperty("adminConsole.serverThreads", 2);
    adminPort = JiveGlobals.getXMLProperty("adminConsole.port", 9090);
    adminSecurePort = JiveGlobals.getXMLProperty("adminConsole.securePort", 9091);
    final QueuedThreadPool tp = new QueuedThreadPool();
    tp.setName("Jetty-QTP-AdminConsole");
    adminServer = new Server(tp);
    if (JMXManager.isEnabled()) {
        JMXManager jmx = JMXManager.getInstance();
        adminServer.addBean(jmx.getContainer());
    }
    // Create connector for http traffic if it's enabled.
    if (adminPort > 0) {
        final HttpConfiguration httpConfig = new HttpConfiguration();
        // Do not send Jetty info in HTTP headers
        httpConfig.setSendServerVersion(false);
        final ServerConnector httpConnector = new ServerConnector(adminServer, null, null, null, -1, serverThreads, new HttpConnectionFactory(httpConfig));
        // Listen on a specific network interface if it has been set.
        String bindInterface = getBindInterface();
        httpConnector.setHost(bindInterface);
        httpConnector.setPort(adminPort);
        adminServer.addConnector(httpConnector);
    }
    // Create a connector for https traffic if it's enabled.
    sslEnabled = false;
    try {
        IdentityStore identityStore = null;
        if (XMPPServer.getInstance().getCertificateStoreManager() == null) {
            Log.warn("Admin console: CertifcateStoreManager has not been initialized yet. HTTPS will be unavailable.");
        } else {
            identityStore = XMPPServer.getInstance().getCertificateStoreManager().getIdentityStore(ConnectionType.WEBADMIN);
        }
        if (identityStore != null && adminSecurePort > 0) {
            if (identityStore.getAllCertificates().isEmpty()) {
                Log.warn("Admin console: Identity store does not have any certificates. HTTPS will be unavailable.");
            } else {
                if (!identityStore.containsDomainCertificate("RSA")) {
                    Log.warn("Admin console: Using RSA certificates but they are not valid for the hosted domain");
                }
                final ConnectionManagerImpl connectionManager = ((ConnectionManagerImpl) XMPPServer.getInstance().getConnectionManager());
                final ConnectionConfiguration configuration = connectionManager.getListener(ConnectionType.WEBADMIN, true).generateConnectionConfiguration();
                final SslContextFactory sslContextFactory = new EncryptionArtifactFactory(configuration).getSslContextFactory();
                final ServerConnector httpsConnector;
                if ("npn".equals(JiveGlobals.getXMLProperty("spdy.protocol", ""))) {
                    httpsConnector = new HTTPSPDYServerConnector(adminServer, sslContextFactory);
                } else {
                    final HttpConfiguration httpsConfig = new HttpConfiguration();
                    httpsConfig.setSendServerVersion(false);
                    httpsConfig.setSecureScheme("https");
                    httpsConfig.setSecurePort(adminSecurePort);
                    httpsConfig.addCustomizer(new SecureRequestCustomizer());
                    final HttpConnectionFactory httpConnectionFactory = new HttpConnectionFactory(httpsConfig);
                    final SslConnectionFactory sslConnectionFactory = new SslConnectionFactory(sslContextFactory, org.eclipse.jetty.http.HttpVersion.HTTP_1_1.toString());
                    httpsConnector = new ServerConnector(adminServer, null, null, null, -1, serverThreads, sslConnectionFactory, httpConnectionFactory);
                }
                final String bindInterface = getBindInterface();
                httpsConnector.setHost(bindInterface);
                httpsConnector.setPort(adminSecurePort);
                adminServer.addConnector(httpsConnector);
                sslEnabled = true;
            }
        }
    } catch (Exception e) {
        Log.error("An exception occurred while trying to make available the admin console via HTTPS.", e);
    }
    // Make sure that at least one connector was registered.
    if (adminServer.getConnectors() == null || adminServer.getConnectors().length == 0) {
        adminServer = null;
        // Log warning.
        log(LocaleUtils.getLocalizedString("admin.console.warning"));
        return;
    }
    HandlerCollection collection = new HandlerCollection();
    adminServer.setHandler(collection);
    collection.setHandlers(new Handler[] { contexts, new DefaultHandler() });
    try {
        adminServer.start();
        // Log the ports that the admin server is listening on.
        logAdminConsolePorts();
    } catch (Exception e) {
        Log.error("Could not start admin console server", e);
    }
}
Also used : JMXManager(org.jivesoftware.openfire.JMXManager) SecureRequestCustomizer(org.eclipse.jetty.server.SecureRequestCustomizer) XMPPServer(org.jivesoftware.openfire.XMPPServer) Server(org.eclipse.jetty.server.Server) HttpConnectionFactory(org.eclipse.jetty.server.HttpConnectionFactory) ConnectionManagerImpl(org.jivesoftware.openfire.spi.ConnectionManagerImpl) HttpConfiguration(org.eclipse.jetty.server.HttpConfiguration) HTTPSPDYServerConnector(org.eclipse.jetty.spdy.server.http.HTTPSPDYServerConnector) SslConnectionFactory(org.eclipse.jetty.server.SslConnectionFactory) DefaultHandler(org.eclipse.jetty.server.handler.DefaultHandler) HTTPSPDYServerConnector(org.eclipse.jetty.spdy.server.http.HTTPSPDYServerConnector) ServerConnector(org.eclipse.jetty.server.ServerConnector) SslContextFactory(org.eclipse.jetty.util.ssl.SslContextFactory) ConnectionConfiguration(org.jivesoftware.openfire.spi.ConnectionConfiguration) QueuedThreadPool(org.eclipse.jetty.util.thread.QueuedThreadPool) EncryptionArtifactFactory(org.jivesoftware.openfire.spi.EncryptionArtifactFactory) ContextHandlerCollection(org.eclipse.jetty.server.handler.ContextHandlerCollection) HandlerCollection(org.eclipse.jetty.server.handler.HandlerCollection) IdentityStore(org.jivesoftware.openfire.keystore.IdentityStore)

Aggregations

DefaultHandler (org.eclipse.jetty.server.handler.DefaultHandler)40 Server (org.eclipse.jetty.server.Server)25 HandlerCollection (org.eclipse.jetty.server.handler.HandlerCollection)22 ContextHandlerCollection (org.eclipse.jetty.server.handler.ContextHandlerCollection)18 ServerConnector (org.eclipse.jetty.server.ServerConnector)16 HandlerList (org.eclipse.jetty.server.handler.HandlerList)16 RequestLogHandler (org.eclipse.jetty.server.handler.RequestLogHandler)15 ServletContextHandler (org.eclipse.jetty.servlet.ServletContextHandler)11 QueuedThreadPool (org.eclipse.jetty.util.thread.QueuedThreadPool)10 Handler (org.eclipse.jetty.server.Handler)9 URI (java.net.URI)7 ContextHandler (org.eclipse.jetty.server.handler.ContextHandler)7 ResourceHandler (org.eclipse.jetty.server.handler.ResourceHandler)7 Test (org.junit.Test)7 File (java.io.File)6 HttpConfiguration (org.eclipse.jetty.server.HttpConfiguration)6 HttpConnectionFactory (org.eclipse.jetty.server.HttpConnectionFactory)6 ServletHolder (org.eclipse.jetty.servlet.ServletHolder)6 SslContextFactory (org.eclipse.jetty.util.ssl.SslContextFactory)6 SecureRequestCustomizer (org.eclipse.jetty.server.SecureRequestCustomizer)5