Simone Bordet

Results 555 comments of Simone Bordet

I don't think this is the right approach. `WebAppContext` is the class that has the logic to create an isolating classloader for the web application, to read war files, etc....

@PashaTurok we want to land first the changes we have done in #2191. Before committing to a certain solution, we would like to get some feedback from people running on...

Can you be more specific? What is the problem you're trying to solve?

@PashaTurok you can use `ServletContextHandler.getObjectFactory()` and add your `Decorator` to it. Jetty will first create an instance of the Servlet, then call the decorators, where you can return the same...

Just to be clear, method `wrap()` is always called, both during the TLS handshake, but also when encrypting data after the TLS handshake. However, yes, we don't have a way...

> Do you think it could be a workaround to avoid SSL handshake when sending the first request if application sends a dummy request to the same destination before it...

Yes you would need to force the TLS handshake on all connections. That is a bit tricky but doable with a request `begin` listener that sends the 2nd, then the...

The original goal for this issue was to allow true server-initiated streams, since the http2 protocol, after the preface, is symmetric.

Regarding adaptive streaming, the client could make a request and the server reply with a response for low-res, a push promise for mid-res, and a push promise for hi-res. It...

@gregw our low level http2 client could.