X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2FHttpClientUtils.java;h=b19d60620b87b7477cc9d9aafa3191c777f50b76;hb=181cd6607ecd631aa5972582ff1d99c5bea75b23;hp=93566f8d718f60e8b29fcce2d65181159491294a;hpb=47168f025aefdaa044802bd5f8f510ffe43a4808;p=jalview.git diff --git a/src/jalview/ws/HttpClientUtils.java b/src/jalview/ws/HttpClientUtils.java index 93566f8..b19d606 100644 --- a/src/jalview/ws/HttpClientUtils.java +++ b/src/jalview/ws/HttpClientUtils.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) - * Copyright (C) 2014 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -29,6 +29,7 @@ import java.util.List; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; +import org.apache.http.HttpVersion; import org.apache.http.NameValuePair; import org.apache.http.client.ClientProtocolException; import org.apache.http.client.HttpClient; @@ -40,11 +41,16 @@ import org.apache.http.entity.mime.content.FileBody; import org.apache.http.entity.mime.content.InputStreamBody; import org.apache.http.entity.mime.content.StringBody; import org.apache.http.impl.client.DefaultHttpClient; +import org.apache.http.params.BasicHttpParams; +import org.apache.http.params.CoreProtocolPNames; +import org.apache.http.params.HttpConnectionParams; +import org.apache.http.params.HttpParams; /** * Helpful procedures for working with services via HTTPClient + * * @author jimp - * + * */ public class HttpClientUtils { @@ -60,10 +66,23 @@ public class HttpClientUtils * @throws Exception */ public static BufferedReader doHttpUrlPost(String postUrl, - List vals) throws ClientProtocolException, - IOException + List vals, int connectionTimeoutMs, + int readTimeoutMs) throws ClientProtocolException, IOException { - HttpClient httpclient = new DefaultHttpClient(); + // todo use HttpClient 4.3 or later and class RequestConfig + HttpParams params = new BasicHttpParams(); + params.setParameter(CoreProtocolPNames.PROTOCOL_VERSION, + HttpVersion.HTTP_1_1); + if (connectionTimeoutMs > 0) + { + HttpConnectionParams.setConnectionTimeout(params, + connectionTimeoutMs); + } + if (readTimeoutMs > 0) + { + HttpConnectionParams.setSoTimeout(params, readTimeoutMs); + } + HttpClient httpclient = new DefaultHttpClient(params); HttpPost httppost = new HttpPost(postUrl); UrlEncodedFormEntity ue = new UrlEncodedFormEntity(vals, "UTF-8"); httppost.setEntity(ue); @@ -72,8 +91,8 @@ public class HttpClientUtils if (resEntity != null) { - BufferedReader r = new BufferedReader(new InputStreamReader( - resEntity.getContent())); + BufferedReader r = new BufferedReader( + new InputStreamReader(resEntity.getContent())); return r; } else @@ -83,18 +102,20 @@ public class HttpClientUtils } public static BufferedReader doHttpMpartFilePost(String postUrl, - List vals, String fparm,File file, String mtype) throws ClientProtocolException, - IOException + List vals, String fparm, File file, String mtype) + throws ClientProtocolException, IOException { HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost(postUrl); - MultipartEntity mpe = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE); - for (NameValuePair nvp:vals) + MultipartEntity mpe = new MultipartEntity( + HttpMultipartMode.BROWSER_COMPATIBLE); + for (NameValuePair nvp : vals) { mpe.addPart(nvp.getName(), new StringBody(nvp.getValue())); } - - FileBody fb = new FileBody(file, mtype!=null ? mtype : "application/octet-stream"); + + FileBody fb = new FileBody(file, + mtype != null ? mtype : "application/octet-stream"); mpe.addPart(fparm, fb); UrlEncodedFormEntity ue = new UrlEncodedFormEntity(vals, "UTF-8"); httppost.setEntity(ue); @@ -103,8 +124,8 @@ public class HttpClientUtils if (resEntity != null) { - BufferedReader r = new BufferedReader(new InputStreamReader( - resEntity.getContent())); + BufferedReader r = new BufferedReader( + new InputStreamReader(resEntity.getContent())); return r; } else @@ -112,19 +133,23 @@ public class HttpClientUtils return null; } } + public static BufferedReader doHttpMpartInputstreamPost(String postUrl, - List vals, String fparm,String fname, InputStream is, String mtype) throws ClientProtocolException, - IOException + List vals, String fparm, String fname, + InputStream is, String mtype) + throws ClientProtocolException, IOException { HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost(postUrl); MultipartEntity mpe = new MultipartEntity(HttpMultipartMode.STRICT); - for (NameValuePair nvp:vals) + for (NameValuePair nvp : vals) { mpe.addPart(nvp.getName(), new StringBody(nvp.getValue())); } - - InputStreamBody fb = (mtype!=null) ? new InputStreamBody(is, fname, mtype) : new InputStreamBody(is, fname); + + InputStreamBody fb = (mtype != null) + ? new InputStreamBody(is, fname, mtype) + : new InputStreamBody(is, fname); mpe.addPart(fparm, fb); UrlEncodedFormEntity ue = new UrlEncodedFormEntity(vals, "UTF-8"); httppost.setEntity(ue); @@ -133,8 +158,8 @@ public class HttpClientUtils if (resEntity != null) { - BufferedReader r = new BufferedReader(new InputStreamReader( - resEntity.getContent())); + BufferedReader r = new BufferedReader( + new InputStreamReader(resEntity.getContent())); return r; } else