async-http-client icon indicating copy to clipboard operation
async-http-client copied to clipboard

Asynchronous Http and WebSocket Client library for Java

Results 157 async-http-client issues
Sort by recently updated
recently updated
newest added

Since 48111becfa6b2cd19cbc2ead9f72ae976e340bd0, we can build tests that really use proxies, not just mocks. We should build on them, refactor the existing tests, and add some more such as preemptive-vs non-preemptive...

Refactor

Retry currently introspect Exception stacktrace to decide if it can be recovered or nor. This is very expensive and probably error prone. We could decide that: - user Exceptions, like...

Enhancement

Its not clear that replayed events go back through the request filters. Its possible to want to have both scenarios. This RFE requests that the option to allow replayed requests...

Enhancement
Contributions Welcome!

I want to access a page which has two realms (realmOne and realmTwo) whit different authentification. Everytime I want to use realmOne to authenticate. So I set the realm name...

Enhancement
Contributions Welcome!

Thanks for an awesome library! While we are waiting for version 3 to arrive, would it be possible to release a version `2.12.4` to maven central which has the `pom.xml`...

### Context Netty supports zstd compression. https://github.com/luben/zstd-jni

I'm upgrading to JakartaEE and Java21 and is running into issues. I'm imorting AHC version `3.0.0.Beta3` with ``` implementation 'org.asynchttpclient:async-http-client:3.0.0.Beta3' ``` But I'm getting errors related to `jakarta.activation`. When I...

In real-life scenarios, we need to configure one of the options individually, rather than having to turn them on or off simultaneously, thanks.

If we create a AsyncHttpClient instance with below code: ```java DefaultAsyncHttpClientConfig.Builder cfgBuilder = new DefaultAsyncHttpClientConfig.Builder(); cfgBuilder.setDisableHttpsEndpointIdentificationAlgorithm(true); AsyncHttpClient client = AsyncHttpClientFactory.getAsyncHttpClient(cfgBuilder.build()); ``` The actual behavior of `getAsyncHttpClient` method is to call...