GitUserMK

Results 1 comments of GitUserMK

The code that I use is this - ExchangeService exchangeService = new ExchangeService(ExchangeVersion.Exchange2010_SP2); ExchangeCredentials credentials = new WebCredentials(username, password, domain); exchangeService.setCredentials(credentials); exchangeService.setUrl(URI.create("url to exchange")); NameResolutionCollection nameResults = exchangeService.resolveName("FirstName,LastName"); for (NameResolution...