Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-users] UPDATE: calling setHost under jetty v9.4.8.v20171121 causes embeded jetty application to hang

Hello:

This is an update to my previous email.

If I use an actual IP address in the setHost call everything works as expected.

For example:

 ServerConnector http = new ServerConnector(server,
                new HttpConnectionFactory(http_config));
 http.setPort(8080);
 http.setHost( "192.168.20.9" );
 http.setIdleTimeout(30000);

works as expected when contacted using the following URL:



thank you,

west suhanic

Back to the top