mbialkowskigmc
mbialkowskigmc
I dont have isolated test code, only app. code, relevant fragments are: ``` AutodiscoverService autodiscoverService = new AutodiscoverService(exchangeVersion); //2010 autodiscoverService.setCredentials(exchangeCredentials); WebProxy proxy = createWebProxy(proxyConfiguration); autodiscoverService.setWebProxy(proxy); response = autodiscoverService.getUserSettings(userSmtpAddress, InterestedUserSettings); Map...
the "fix" I made was ``` public class HttpClientWebRequest extends HttpWebRequest { ... private HttpRequestBase httpPost = null; ... public void prepareConnection() { httpPost = "GET".equals(this.getRequestMethod()) ? new HttpGet(getUrl().toString()) :...