Top "Apache-commons-httpclient" questions

The HttpClient v3.

How to handle invalid SSL certificates with Apache HttpClient?

I know, there are many different questions and so many answers about this problem... But I can't understand... I have: …

java ssl https apache-commons-httpclient
Deprecated Java HttpClient - How hard can it be?

All I'm trying to do is download some JSON and deserialize it into an object. I haven't got as far …

java apache-httpclient-4.x apache-commons-httpclient
How to POST JSON request using Apache HttpClient?

I have something like the following: final String url = "http://example.com"; final HttpClient httpClient = new HttpClient(); final PostMethod postMethod = …

java json http post apache-commons-httpclient
Using Apache httpclient for https

I have enabled https in tomcat and have a self-signed certificate for server auth. I have created an http client …

java security ssl tomcat apache-commons-httpclient
Best Practice to Use HttpClient in Multithreaded Environment

For a while, I have been using HttpClient in a multithreaded environment. For every thread, when it initiates a connection, …

java apache-commons-httpclient
Disable HttpClient logging

I am using commons-httpclient 3.1 in an integration test suite. The default logging for HttpClient is extremely noisy and I can't …

java logging apache-commons-httpclient jwebunit
Apache HttpClient 4.1 - Proxy Settings

I am trying to POST some parameters to a server, but I need to set up the proxy. can you …

java proxy apache-commons-httpclient
Using Apache HttpClient how to set the TIMEOUT on a request and response

I need to set time out for the Http Request we make to a service (not a web service). We …

java apache-commons-httpclient
Android deprecated apache module (HttpClient, HttpResponse, etc.)

Android has deprecated the Apache module since API level 22, so my question is, how do I use, for example HttpResponse …

android apache apache-commons-httpclient
Preemptive Basic authentication with Apache HttpClient 4

Is there an easier way to setup the http client for preemptive basic authentication than what described here? In previous …

java basic-authentication apache-commons-httpclient