Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-dev] SSL Connectivity (was Re: NextProtoNego and OSGi)

Found the issue:

Am 26.01.2013 10:42, schrieb Gunnar Wagenknecht:
ServerConnector connector = new ServerConnector(server,
     sslContextFactory,
    AbstractConnectionFactory.getFactories(
      sslContextFactory,
      new HttpConnectionFactory(httpConfiguration)));


 ServerConnector connector = new ServerConnector(
    server,
    sslContextFactory,
    new HttpConnectionFactory(httpConfiguration));

is the right constructor.

-Gunnar

--
Gunnar Wagenknecht
gunnar@xxxxxxxxxxxxxxx
http://wagenknecht.org/



Back to the top