jetty.project icon indicating copy to clipboard operation
jetty.project copied to clipboard

Eclipse Jetty® - Web Container & Clients - supports HTTP/2, HTTP/1.1, HTTP/1.0, websocket, servlets, and more

Results 665 jetty.project issues
Sort by recently updated
recently updated
newest added

We have set up SunJSSE with a FIPS-compliant cryptography library, as documented here: https://docs.oracle.com/javase/7/docs/technotes/guides/security/jsse/FIPS.html Among others, this puts the SunJSSE library into a special "FIPS mode". We use Jetty 9.4.6,...

Stale

We have a listener `implmenets org.eclipse.jetty.client.api.Response.Listener` class and for `onHeaders` method we have the following implementation ``` @Override public void onHeaders(Response response) { wrappedVersion.onHeaders(response); } ``` this `wrappedVersion.onHeaders` calls `ProxyResponseListener`...

Help Wanted

**Jetty version(s)** 10+ **Description** Currently `QuicServerConnector` stores the TLS key pair in `java.io.tmpdir`, but the directory should be configurable.

Bug

**Jetty version** 9.4.28.v20200408 9.4.27.v20200227 9.4.26.v20200117 9.4.24.v20191120 9.4.22.v20191022 Note: above are versions I've tested and had the issue. I've skipped couple versions in the middle (e.g., 9.4.25) It is not that...

There is code inherited from 9.4.x that uses system properties to figure out module-path and such. For Jetty 10 we need to change those places to use the Module APIs.

Currently `jetty-ssl-context.xml` defines only a subset of all the properties that are defined in `SslContextFactory`. In particular, these are missing: `[in|ex]cludeProtocols`, `[in|ex]cludeCipherSuites`, possibly others. We need to verify that we...

Help Wanted

**Jetty version** 9.4.x **Description** Review `LeakDetector` to see if it's modern enough. Also, try to make `LeakTrackingConnectionPool` use delegation rather than inheritance, following the model of `LeakTrackingByteBufferPool`. See also #2814...

`Uptime` is currently a static singleton with a nested interface and implementation that are apparently not used. Furthermore, it reports the uptime of the JVM while it is mostly used...

In Jetty 10, jar scanning is done in `MetaInfConfiguration` and tested in `MetaInfConfigurationTest`. We need to review the logic that finds the jars to scan, depending on whether we run...

LowResourceMonitor is a useful foundation for managing low resources in a jetty instance. In particular, I'd like to be able to extend it to monitor DB connections and certain other...

Enhancement