0
我有一個項目,發佈其餘請求並回讀響應。與http功能工作正常。但是當我使用https時,我遇到連接拒絕錯誤。 gradle是這裏的構建工具,我在projectdir下添加了gradle.properties,但仍然收到了連接拒絕錯誤。gradle Project,org.apache.http.conn.HttpHostConnectException:https連接拒絕錯誤
HttpPost post = new HttpPost(RequestURL);
StringEntity input = new StringEntity(Payload);
post.setEntity(input);
HttpResponse response = client.execute(post);`
gradle.properties下 項目添加> gradle.properties
systemProp.https.proxyHost=www.somehost.org
systemProp.https.proxyPort=8080
systemProp.https.proxyUser=userid
systemProp.https.proxyPassword=password
當我加入gradle.properties首次,這是工作,但突然開始嘔吐此連接被拒絕的錯誤。