Examples of RequestConfig


Examples of org.apache.http.client.config.RequestConfig

        final HttpHost target = getServerHttp();
        this.localServer.register("*", new RelativeRedirectService());

        final HttpContext context = new BasicHttpContext();

        final RequestConfig config = RequestConfig.custom().setRelativeRedirectsAllowed(true).build();
        final HttpGet httpget = new HttpGet("/oldlocation/");
        httpget.setConfig(config);

        final HttpResponse response = this.httpclient.execute(target, httpget, context);
        EntityUtils.consume(response.getEntity());
View Full Code Here

Examples of org.apache.http.client.config.RequestConfig

        final HttpHost target = getServerHttp();
        this.localServer.register("*", new RelativeRedirectService2());

        final HttpContext context = new BasicHttpContext();

        final RequestConfig config = RequestConfig.custom().setRelativeRedirectsAllowed(true).build();
        final HttpGet httpget = new HttpGet("/test/oldlocation");
        httpget.setConfig(config);

        final HttpResponse response = this.httpclient.execute(target, httpget, context);
        EntityUtils.consume(response.getEntity());
View Full Code Here

Examples of org.apache.http.client.config.RequestConfig

    @Test(expected=ClientProtocolException.class)
    public void testRejectRelativeRedirect() throws Exception {
        final HttpHost target = getServerHttp();
        this.localServer.register("*", new RelativeRedirectService());

        final RequestConfig config = RequestConfig.custom().setRelativeRedirectsAllowed(false).build();
        final HttpGet httpget = new HttpGet("/oldlocation/");
        httpget.setConfig(config);
        try {
            this.httpclient.execute(target, httpget);
        } catch (final ClientProtocolException e) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.