Details
-
Test
-
Status: Open
-
Major
-
Resolution: Unresolved
-
3.0.1
-
None
-
None
Description
{{Caused by: java.net.ProtocolException: Server redirected too many times (20) at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1914) ~[?:1.8.0] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1504) ~[?:1.8.0] at com.ibm.net.ssl.www2.protocol.https.b.getInputStream(b.java:35) ~[?:8.0 build_20180213] at org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown Source) ~[?:?] at org.apache.xerces.impl.XMLVersionDetector.determineDocVersion(Unknown Source) ~[?:?] at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) ~[?:?] at org.apache.xerces.parsers.XML11Configuratio}}
Source Code :
ystem.setProperty("http.auth.ntlm.domain", "BLA");
CookieHandler.setDefault(new CookieManager(null,
CookiePolicy.ACCEPT_ALL));
Authenticator.setDefault(new MyAuthenticator());
System.out.println("Hello from here");
URL url = null;
try
catch (MalformedURLException e)
{ e.printStackTrace(); } ExchangeWebService ex = new ExchangeWebService(url);
Client client = org.apache.cxf.frontend.ClientProxy.getClient(ex.getExchangeWebPort());
HTTPConduit conduit = (HTTPConduit) client.getConduit();
HTTPClientPolicy httpClientPolicy = new HTTPClientPolicy();
httpClientPolicy.setConnectionTimeout(36000);
httpClientPolicy.setAllowChunking(false);
conduit.setClient(httpClientPolicy);
ex.getExchangeWebPort().getFolder(request, impersonation, mailboxCulture, requestVersion, timeZoneContext,
getFolderResult, serverVersion);
static class MyAuthenticator extends Authenticator {
public PasswordAuthentication getPasswordAuthentication()
}