当我尝试通过代理进行网址连接时,我收到此错误
java.io.IOException: Unable to tunnel through proxy. Proxy returns "HTTP/1.1 405 Method Not Allowed"
at sun.net.www.protocol.http.HttpURLConnection.doTunneling(Unknown Source)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(Unknown Source)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getOutputStream(Unknown Source)
at com.test.sslpost.main(sslpost.java:81)
打开连接时会产生错误,如果我尝试使用代理,它的工作正常。
请参阅下面描述的java代码
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.net.URL;
import java.net.URLEncoder;
import javax.net.ssl.HttpsURLConnection;
import javax.net.ssl.SSLContext;
import javax.net.ssl.TrustManager;
import javax.net.ssl.X509TrustManager;
public class sslpost {
public static void main(String[] args) {
try {
TrustManager[] trustAllCerts = new TrustManager[] { new X509TrustManager() {
public java.security.cert.X509Certificate[] getAcceptedIssuers() {
return null;
}
public void checkClientTrusted(
java.security.cert.X509Certificate[] certs, String authType) {
}
public void checkServerTrusted(
java.security.cert.X509Certificate[] certs, String authType) {
}
} };
try {
SSLContext sc = SSLContext.getInstance("SSL");
sc.init(null, trustAllCerts, new java.security.SecureRandom());
HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
} catch (Exception e) {
e.printStackTrace();
}
System.setProperty("https.proxySet", "true");
System.setProperty("https.proxyHost", "xxx.xxx.xxx.xxx");
System.setProperty("https.proxyPort", "80");
URL url = new URL("https://www.google.com");
@SuppressWarnings("deprecation")
HttpsURLConnection connection = (HttpsURLConnection) url
.openConnection();
connection.setDoInput(true);
connection.setDoOutput(true);
connection.setRequestMethod("POST");
connection.setFollowRedirects(true);
String query = "serviceId="
+ URLEncoder.encode("7");
connection.setRequestProperty("Content-length",
String.valueOf(query.length()));
connection.setRequestProperty("Content-Type",
"application/x-www- form-urlencoded");
connection.setRequestProperty("User-Agent",
"Mozilla/4.0 (compatible; MSIE 5.0; Windows 98; DigExt)");
DataOutputStream output = new DataOutputStream(
connection.getOutputStream());
output.writeBytes(query);
System.out.println("Resp Code:" + connection.getResponseCode());
System.out.println("Resp Message:"
+ connection.getResponseMessage());
DataInputStream input = new DataInputStream(
connection.getInputStream());
for (int c = input.read(); c != -1; c = input.read())
System.out.print((char) c);
input.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
答案 0 :(得分:1)
HTTPS默认使用端口443,默认情况下HTTP使用端口80。
在你的代码中你有这个
System.setProperty("https.proxyPort", "80");
或许尝试将其设置为443而不是80
答案 1 :(得分:0)
我认为不需要更改代码。这意味着代理服务器无法通过隧道
您必须尝试使用不同的 https代理 ...
systemProp.https.proxyHost=""
systemProp.https.proxyPort=""
systemProp.https.proxyPassword=""
systemProp.https.proxyUser=""
答案 2 :(得分:0)
你有没有打电话给“super.doGet(req,resp);”在你的代码?如下?
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
super.doGet(req, resp);
我能够检查super.doGet的实现,然后你可以找到下面的代码。
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
String protocol = req.getProtocol();
String msg = lStrings.getString("http.method_get_not_supported");
if (protocol.endsWith("1.1")) {
resp.sendError(HttpServletResponse.SC_METHOD_NOT_ALLOWED, msg);
} else {
resp.sendError(HttpServletResponse.SC_BAD_REQUEST, msg);
}
}