Ich habe ein Problem, wenn Apache Axis 1.4 Client für den Zugriff auf Web-Service über Proxy verwenden.AxisProperties Proxy-Einstellungen aufhören zu arbeiten in Achse 1.4
Zuerst die Dinge funktionieren, aber an einem gewissen Punkt (nicht das Intervall bestimmt) der Proxy einfach aufhört zu funktionieren und ich anfangen,: Unknown
Hier ist der Code:
if (proxyHost != null && !proxyHost.isEmpty()) {
logger.warn("Using proxy server: " + proxyHost + " port " + proxyPort);
AxisProperties.getProperties().put("proxySet", "true");
AxisProperties.setProperty("http.proxyHost", proxyHost);
AxisProperties.setProperty("http.proxyPort", proxyPort);
if (proxyUser != null && !proxyUser.isEmpty()) {
logger.warn("User proxy user: " + proxyUser);
AxisProperties.setProperty("http.proxyUser", proxyUser);
AxisProperties.setProperty("http.proxyPassword", proxyPassword);
}
} //then make call
Stub binding = (Stub) new ServiceLocator().getServiceSoap(new URL(myUrl));
Habe ich eine verpasst wichtiger Punkt?