我们使用代理设置通过我们的weblogic服务器(node1 / node2)上的java独立示例代码调用URL。 此代码在节点1上正常工作,但相同的代码在node2服务器上不起作用。 我们已经检查了代理设置和凭据都很好但仍然出现以下错误:
java.net.ProtocolException: Server redirected too many times (20)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1323)
at ProxyCode.start2(ProxyCode.java:54)
at ProxyCode.main(ProxyCode.java:23)
Exception in thread "Main Thread" java.lang.NullPointerException
at java.io.Reader.<init>(Reader.java:61)
at java.io.InputStreamReader.<init>(InputStreamReader.java:55)
at ProxyCode.readFromInputStream(ProxyCode.java:65)
at ProxyCode.start2(ProxyCode.java:59)
at ProxyCode.main(ProxyCode.java:22)
另外,请在下面找到我的代码段: SimpleAuthenticator.java
import java.net.Authenticator; import java.net.PasswordAuthentication;
public class SimpleAuthenticator extends Authenticator
{
private String username;
private String password;
public SimpleAuthenticator(String username,String password)
{
this.username = username;
this.password = password;
}
protected PasswordAuthentication getPasswordAuthentication()
{
return new PasswordAuthentication(
username,password.toCharArray());
}
}
主要课程:
String url = "http://www.oracle.com/technetwork/java/readme-2-149793.txt";
String proxy = "proxyserver";
String port = "8080";
String username = "username";
String password = "password";
Authenticator.setDefault(new SimpleAuthenticator(username,password));
URL server = null;
try {
CookieHandler.setDefault(new CookieManager(null, CookiePolicy.ACCEPT_ALL));
server = new URL(url);
}
catch (MalformedURLException e) {
e.printStackTrace();
}
Properties systemProperties = System.getProperties();
systemProperties.setProperty("http.proxyHost", proxy);
systemProperties.setProperty("http.proxyPort", port);
InputStream in = null;
URLConnection connection = null;
try {
connection = (URLConnection) server.openConnection();
connection.connect();
in = connection.getInputStream();
}
catch (IOException e) {
e.printStackTrace();
}
System.out.println(readFromInputStream(in));
}
public static String readFromInputStream(InputStream in) {
StringBuffer strBuf = new StringBuffer();
char ac[];
BufferedReader buf = new BufferedReader(new InputStreamReader(in));
try
{
while (buf.ready()) {
ac = new char[10000];
buf.read(ac);
strBuf.append(ac);
}
buf.close();
}
catch (IOException e) {
e.printStackTrace();
}
我们现在几个月都陷入困境,无法在任何地方获得任何有用的信息。 请帮助。谢谢
答案 0 :(得分:1)
如果您提供了错误的凭据(用户名或密码),您将收到此错误。 基于Glassfish的Web应用程序发生在我身上。然而,我期待401响应。
我认为,Authenticator多次尝试相同的凭据。
答案 1 :(得分:0)
发现了这个未解决的问题,看起来仍然没有解决。您的用户没有访问权限,但没有再次提示它retries with the same user over and over
更新:问题有另一张票证打开-这显然是预期的行为,并且
“为克服这一点,您的实现
Authenticator::getPasswordAuthentication
需要提供一种方法来 如果初始身份验证尝试是,请收集正确的密码 不成功。”
查看票证或the java.net.Authenticator
documentation以获取更多信息。