无法使用 httpClient 将字符串上传到我的 SSL 服务器
Unable to upload strings with httpClient to my SSL server
我正在尝试使用 php 网络服务将一些文本上传到我的服务器,我的服务器具有 ssl 证书。当我尝试另一台没有 ssl 的服务器时,它工作正常。
谁能帮我解决这个问题?我在这个论坛里找了一整天。
请不要告诉我这是重复的问题(帮助初学者程序员)
这是我的代码:
protected String doInBackground(Void... params) {
ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("base64", ba1));
nameValuePairs.add(new BasicNameValuePair("ImageName", System.currentTimeMillis() + ".jpg"));
nameValuePairs.add(new BasicNameValuePair("arrondi",arrondi));
nameValuePairs.add(new BasicNameValuePair("controleur",controleur));
try {
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(URL);
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs, "UTF-8"));
HttpResponse response = httpclient.execute(httppost);
String st = EntityUtils.toString(response.getEntity());
Log.v("log_tag", "In the try Loop" + st);
} catch (Exception e) {
Log.v("log_tag", "Error in http connection " + e.toString());
}
return "Success";
}
请尝试绕过 SSL 证书并重试,我认为它应该可以工作..
我正在尝试使用 php 网络服务将一些文本上传到我的服务器,我的服务器具有 ssl 证书。当我尝试另一台没有 ssl 的服务器时,它工作正常。
谁能帮我解决这个问题?我在这个论坛里找了一整天。
请不要告诉我这是重复的问题(帮助初学者程序员)
这是我的代码:
protected String doInBackground(Void... params) {
ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("base64", ba1));
nameValuePairs.add(new BasicNameValuePair("ImageName", System.currentTimeMillis() + ".jpg"));
nameValuePairs.add(new BasicNameValuePair("arrondi",arrondi));
nameValuePairs.add(new BasicNameValuePair("controleur",controleur));
try {
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(URL);
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs, "UTF-8"));
HttpResponse response = httpclient.execute(httppost);
String st = EntityUtils.toString(response.getEntity());
Log.v("log_tag", "In the try Loop" + st);
} catch (Exception e) {
Log.v("log_tag", "Error in http connection " + e.toString());
}
return "Success";
}
请尝试绕过 SSL 证书并重试,我认为它应该可以工作..