Top "Asynchttpclient" questions

Asynchronous HTTP client library for Java

How do I get a CompletableFuture<T> from an Async Http Client request?

On Async Http Client documentation I see how to get a Future<Response> as the result of an …

asynchronous java-8 asynchttpclient completable-future
Setup AsyncHttpClient to use HTTPS

I am using com.loopj.android:android-async-http:1.4.9 for my request to server. It was working fine until I SSL/TLS …

android ssl tls1.2 asynchttpclient
Get URL content with Basic Authentication with Java and async-http-client

I am writing a Java lib and need to perform a request to a URL - currently using async-http-client from …

java asynchttpclient
Disable hostname verification in io.netty.handler.ssl.Sslcontext

Is there a way to disable hostname verification for io.netty.handler.ssl.Sslcontext? I have this code: sslContext = SslContextBuilder .…

java ssl netty asynchttpclient
How to convert curl request to HttpClient

I have a curl request that looks like this: curl -i -XPOST 'http://my_url:port/write?db=myDb' -u …

c# .net curl dotnet-httpclient asynchttpclient