Exchange 2003 서버의 사서함을 읽을 수있는 Windows 양식 앱을 작성하고 있습니다. 이 코드는 연결되고 전자 메일을 읽을 수 있지만 AutodiscoverUrl 메서드를 실행하는 데 2 분 이상 걸릴 수 있습니다.C#에서 Exchange Server에 연결할 때 AutodiscoverUrl이 필요합니까?
exchange = new ExchangeService(ExchangeVersion.Exchange2013_SP1);
exchange.Credentials = new WebCredentials("USERNAME", "PASSWORD", "DOMAIN");
exchange.AutodiscoverUrl("[email protected]", RedirectionUrlValidationCallback);
이것은 모두 회사 내부 네트워크에서 발생합니다. 저는 데이터 센터에 2 천 개의 서버가있는 대기업에 있으며 Exchange 서버를 찾을 때까지 AutodiscoverUrl이 모든 서버를 반복하는지 궁금합니다. Exchange 서버의 이름을 알고 있습니다. 그것을 지정하고 운전하는 방법이 있습니까?