Example usage for org.apache.http.client.methods HttpPostHC4 setConfig

List of usage examples for org.apache.http.client.methods HttpPostHC4 setConfig

Introduction

In this page you can find the example usage for org.apache.http.client.methods HttpPostHC4 setConfig.

Prototype

public void setConfig(final RequestConfig config) 

Source Link

Usage

From source file:com.tingtingapps.securesms.mms.OutgoingLegacyMmsConnection.java

private HttpUriRequest constructRequest(byte[] pduBytes, boolean useProxy) throws IOException {
    try {//from ww w  .j a  va  2 s. c o m
        HttpPostHC4 request = new HttpPostHC4(apn.getMmsc());
        for (Header header : getBaseHeaders()) {
            request.addHeader(header);
        }

        request.setEntity(new ByteArrayEntityHC4(pduBytes));
        if (useProxy) {
            HttpHost proxy = new HttpHost(apn.getProxy(), apn.getPort());
            request.setConfig(RequestConfig.custom().setProxy(proxy).build());
        }
        return request;
    } catch (IllegalArgumentException iae) {
        throw new IOException(iae);
    }
}

From source file:org.thoughtcrime.securesms.mms.OutgoingMmsConnection.java

@Override
protected HttpUriRequest constructRequest(boolean useProxy) throws IOException {
    HttpPostHC4 request = new HttpPostHC4(apn.getMmsc());
    request.addHeader("Accept", "*/*, application/vnd.wap.mms-message, application/vnd.wap.sic");
    request.addHeader("x-wap-profile", "http://www.google.com/oha/rdf/ua-profile-kila.xml");
    request.addHeader("Content-Type", "application/vnd.wap.mms-message");
    request.setEntity(new ByteArrayEntityHC4(mms));
    if (useProxy) {
        HttpHost proxy = new HttpHost(apn.getProxy(), apn.getPort());
        request.setConfig(RequestConfig.custom().setProxy(proxy).build());
    }//from   w  w  w.j  a v  a  2 s. co  m
    return request;
}