Example usage for org.apache.http.impl.client DefaultHttpClient subclass-usage

List of usage examples for org.apache.http.impl.client DefaultHttpClient subclass-usage

Introduction

In this page you can find the example usage for org.apache.http.impl.client DefaultHttpClient subclass-usage.

Usage

From source file com.isabel.coursera.potlatch.server.unsafe.EasyHttpClient.java

/**
 * Easy to use Http and Https client, that transparently adds gzip compression
 * and ignores all Https certificates. It can also be used for using credentials
 * in your connection.
 *
 * This class was created for Android applications, where the appropriate apache libraries

From source file com.skywomantech.app.symptommanagement.client.oauth.unsafe.EasyHttpClient.java

/**
 * Easy to use Http and Https client, that transparently adds gzip compression
 * and ignores all Https certificates. It can also be used for using credentials
 * in your connection.
 * 
 * This class was created for Android applications, where the appropriate apache libraries

From source file app.android.auto.net.sampleapp.oauth.blackwork.EasyHttpClient.java

/**
 * Easy to use Http and Https client, that transparently adds gzip compression
 * and ignores all Https certificates. It can also be used for using credentials
 * in your connection.
 *
 * This class was created for Android applications, where the appropriate apache libraries

From source file com.grendelscan.commons.http.apache_overrides.client.CustomHttpClient.java

/**
 * @author David Byrne
 * 
 */
public class CustomHttpClient extends DefaultHttpClient {
    private static final Logger LOGGER = LoggerFactory.getLogger(CustomHttpClient.class);

From source file com.msopentech.thali.utilities.universal.HttpKeyHttpClient.java

/**
 * Following the lead from NetCipher we need to hijack the createClientConnectionManager method in order to properly
 * implement DNS resolution when we are using a Tor Proxy.
 */
public class HttpKeyHttpClient extends DefaultHttpClient {
    protected final Proxy proxy;

From source file org.bedework.util.http.BasicHttpClient.java

/** A dav client
*
* @author Mike Douglass  douglm @ rpi.edu
*/
public class BasicHttpClient extends DefaultHttpClient implements Logged {
    private static PoolingClientConnectionManager connManager;

From source file edu.mit.mobile.android.locast.net.NetworkClient.java

 * @author stevep
 */
public class NetworkClient extends DefaultHttpClient {
    private static final String TAG = NetworkClient.class.getSimpleName();
    public final static String JSON_MIME_TYPE = "application/json";