async-http-client
async-http-client copied to clipboard
Asynchronous Http and WebSocket Client library for Java
Hi there, we found that the following places using the insecure cipher and hash functions: ``` /home/xwt/IdeaProjects/async-http-client-latest/client/src/main/java/org/asynchttpclient/util/MessageDigestUtils.java:23: error: [algorithm.not.allowed] Algorithm: MD5 is not allowed by the current rules return MessageDigest.getInstance("MD5");...
Hello, we face the following issue with AsyncHttpClient. When the response is chunked, using of the open channel from the previous request does not work and runs into timeout delaying...
**Problem Suspect 1** 188 instances of "io.netty.channel.nio.NioEventLoopGroup", loaded by "java.net.URLClassLoader @ 0x9707a360" occupy 931.71 MB (58.73%) bytes. Keywords io.netty.channel.nio.NioEventLoopGroup java.net.URLClassLoader @ 0x9707a360 Details » **Problem Suspect 2** 20 instances of...
Im using the reactive streams mode of the AsyncHttpClient library and have uncovered some behavior I feel may be incorrect. Take the following example: 1. User creates a request and...
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...
Run up a socks proxy, for example Tor browser proxy on port 9150 Run this code ``` > import org.asynchttpclient.AsyncHttpClient; > import org.asynchttpclient.Response; > import org.asynchttpclient.proxy.ProxyType; > > import java.util.concurrent.Future;...
I am using async http websocket client to send requests and I have observed many times that connection is lost without calling onClose callback. websocket stays open (websokcet.isOpen still true)but...
Hi, Is this a `Single Thread non-blocking IO` HTTP Client?
Following https://github.com/AsyncHttpClient/async-http-client/issues/1765#issuecomment-765416561.
Hi, I'm getting the following exception with AsyncHttpClient > 2021-01-13 13:40:37,374 WARN i.n.u.c.DefaultPromise [AsyncHttpClient-4-29] An exception was thrown by org.asynchttpclient.netty.channel.NettyChannelConnector$1.operationComplete() java.lang.NullPointerException: null at org.asynchttpclient.netty.channel.NettyConnectListener.onSuccess(NettyConnectListener.java:105) ~[async-http-client-2.10.4.jar:?] at org.asynchttpclient.netty.channel.NettyChannelConnector$1.onSuccess(NettyChannelConnector.java:92) ~[async-http-client-2.10.4.jar:?] at org.asynchttpclient.netty.SimpleChannelFutureListener.operationComplete(SimpleChannelFutureListener.java:26)...