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

when log level is set to debug, the request object is logged. this prints all headers, including authorization header. in case a user has implemented their own credentials mechanism, for...

We still use java 7 in some projects. But it looks `2.12.1` cannot run on Java 7.

Is it possible to have an async .execute without all the callback and function specification. It is very messy and dirty to have to define all the possible call back...

➜ uname -a Linux 4.15.0-88-generic #88-Ubuntu SMP Tue Feb 11 20:11:34 UTC 2020 x86_64 ➜ java -version openjdk version "11.0.4" 2019-07-16 LTS OpenJDK Runtime Environment Corretto-11.0.4.11.1 (build 11.0.4+11-LTS) OpenJDK 64-Bit...

Hi, I have noticed that java.util.concurrent.TimeoutException occures when dealing with AHC. Problem occures when I am executing two request towards same url, first one passes ok but second one timeouts....

For background, we attempted to use asynchttpclient with a Netty async DNS resolver some time back, but managed to quite severely DoS our cluster DNS servers. It emerged that concurrent...

What if I want to provide the community with the ability to support the unix domain socket protocol? If yes, how long will the code be incorporated?

Both `DefaultAsyncHttpClient` and `ChannelManager` call `config.getThreadFactory`, but when the result is null, `DefaultAsyncHttpClient` instantiates a `DefaultThreadFactory` with the pool name `config.getThreadPoolName() + "-timer"` while `ChannelManager` instantiates that same factory with...

Contributions Welcome!

Hello, dear open source contributors! When can you support the Unix domain socket protocol? I have simply verified the feasibility of this function through intrusive modification, and the workload is...

Contributions Welcome!

When using non-blocking IO it's often useful to have only a small number of threads handling the actual IO. Reduced resource use is one of the purposes, afterall. AIUI, AHC...