Since SPDY is now in the picture, the initialization is a bit different. The ManyConnectors embedded example should help. http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/tree/examples/embedded/src/main/java/org/eclipse/jetty/embedded/ManyConnectors.java
-- Joakim Erdfelt <[email protected]> webtide.com <http://www.webtide.com/> Developer advice, services and support from the Jetty & CometD experts eclipse.org/jetty - cometd.org On Wed, Mar 13, 2013 at 9:01 AM, Will Hoover <[email protected]> wrote: > In Jetty 8 I used to be able to do the following. What is the Jetty 9 > equivalent? I can't seem to find SslSelectChannelConnector or > SelectChannelConnector in Jetty 9.**** > > ** ** > > SslSelectChannelConnector sslCnct = new SslSelectChannelConnector(sslCnxt); > **** > > sslCnct.setPort(9080);**** > > sslCnct.setHost("localhost");**** > > SelectChannelConnector httpCnct = new SelectChannelConnector();**** > > httpCnct.setPort(8080);**** > > httpCnct.setHost("localhost");**** > > **** > > server.setConnectors(new Connector[] { httpCnct, sslCnct });**** > > ** ** > > ** ** > > _______________________________________________ > jetty-users mailing list > [email protected] > https://dev.eclipse.org/mailman/listinfo/jetty-users > >
_______________________________________________ jetty-users mailing list [email protected] https://dev.eclipse.org/mailman/listinfo/jetty-users
