Re: RFR: 8325766: Review seclibs tests for cert expiry [v2]

2025-02-20 Thread Matthew Donovan
> This PR updates the CertificateBuilder with a new method that creates a new > instance with common fields (subject name, public key, serial number, > validity, and key uses) filled-in. One test, IPIdentities.java, is updated to > show how the method can be used to create various certificates.

RFR: 8350019: HttpClient: DelegatingExecutor should resort to the fallback executor only on RejectedExecutionException

2025-02-20 Thread Volkan Yazici
Updates `HttpClientImpl.DelegatingExecutor` to resort to the fallback executor only on `RejectedExecutionException`. `DelegatingExecutorTest` is added to verify the behavior of `DelegatingExecutor`. `tier1,2` reports are attached to the ticket. - Commit messages: - Handle only `Re

Re: RFR: 8350019: HttpClient: DelegatingExecutor should resort to the fallback executor only on RejectedExecutionException

2025-02-20 Thread Daniel Fuchs
On Thu, 20 Feb 2025 14:31:38 GMT, Volkan Yazici wrote: > Updates `HttpClientImpl.DelegatingExecutor` to resort to the fallback > executor only on `RejectedExecutionException`. `DelegatingExecutorTest` is > added to verify the behavior of `DelegatingExecutor`. `tier1,2` reports are > attached t

RFR: 8350451: HttpClient should not wait until the request body has been fully sent before reading the response headers

2025-02-20 Thread Daniel Fuchs
Hi - Please find here a PR that improves streaming strategy in the HttpClient. The HttpClient currently waits until the full request body has been sent before starting to listen for a response. This is not optimal, in particular in cases where the server sends back e.g. 500 without even reading

Re: RFR: 8325766: Review seclibs tests for cert expiry [v2]

2025-02-20 Thread Weijun Wang
On Thu, 20 Feb 2025 12:31:37 GMT, Matthew Donovan wrote: >> This PR updates the CertificateBuilder with a new method that creates a new >> instance with common fields (subject name, public key, serial number, >> validity, and key uses) filled-in. One test, IPIdentities.java, is updated >> to s

Re: RFR: 8325766: Review seclibs tests for cert expiry [v2]

2025-02-20 Thread Matthew Donovan
On Thu, 20 Feb 2025 11:22:41 GMT, Mikhail Yankelevich wrote: >> Matthew Donovan has updated the pull request incrementally with one >> additional commit since the last revision: >> >> changed boolean array initialization > > test/jdk/sun/net/www/protocol/https/HttpsURLConnection/IPIdentities.

Re: RFR: 8325766: Review seclibs tests for cert expiry

2025-02-20 Thread Mikhail Yankelevich
On Wed, 19 Feb 2025 15:48:10 GMT, Matthew Donovan wrote: > This PR updates the CertificateBuilder with a new method that creates a new > instance with common fields (subject name, public key, serial number, > validity, and key uses) filled-in. One test, IPIdentities.java, is updated to > show