Top "Apache-commons-httpclient" questions

The HttpClient v3.

How to enable logging for apache commons HttpClient on Android

To enable logging for apache commons HttpClient in normal Java application I used: System.setProperty("org.apache.commons.logging.Log", "…

android apache-commons-httpclient
Duplicate files during packaging of APK app-debug-unaligned.apk

I got this error Duplicate files during packaging of APK app-debug-unaligned.apk when put 2 jar files : httpclient-4.3.5.jar httpmime-4.3.5.jar …

android http jar android-studio apache-commons-httpclient
How can I create a CloseableHttpResponse object to help testing?

I'm trying to construct a CloseableHttpResponse mock object to be returned in one of my unit tests, but there's no …

java mocking mockito apache-commons-httpclient
Apache HttpClient Digest authentication

Basically what I need to do is to perform digest authentication. First thing I tried is the official example available …

java android apache-commons-httpclient digest-authentication
HttpClient supporting multiple TLS protocols

We're writing an app that must communicate with a few servers using HTTPS. It needs to communicate with AWS (using …

java spring ssl httpclient apache-commons-httpclient
How can I configure HTTPClient to authenticate against a SOCKS proxy?

I need to set up proxy authentication against a SOCKS proxy. I found out this post giving instructions that appear …

java http proxy apache-commons-httpclient
HttpClient 4.2, Basic Authentication, and AuthScope

I have an application connecting to sites that require basic authentication. The sites are provided at run time and not …

java httpclient apache-httpclient-4.x apache-commons-httpclient
AIX: IBM Java: java.net.SocketException: Connection timed out:could be due to invalid address

We have seen the following exceptions very frequently on IBM AIX when attempting to make an SSL connection to our …

java ssl aix apache-commons-httpclient
Is it possible to download files like PDF with HttpClient?

I found some examples here on how to download a file but most of them seem to be using HttpURLConnection. …

java pdf httpurlconnection apache-commons-httpclient
How can I reuse a HttpClient connection efficiently?

I am doing HTTP POSTs very frequently (>= 1/sec) to an API endpoint and I want to make sure I'm …

java http apache-commons-httpclient persistent-connection