经过大量搜索,我发布了这个问题。
问题来了。。
我正在使用 EWS 通过 AutoDiscover 将联系人导入到 MAC 应用程序。
这是我的 XML 请求
NSString *soapMessage = [NSString stringWithFormat:
@"<Autodiscover xmlns=\"http://schemas.microsoft.com/exchange/autodiscover/outlook/requestschema/2006/\">"
"<Request>"
"<EMailAddress>%@</EMailAddress>"
"<AcceptableResponseSchema>"
"http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a"
"</AcceptableResponseSchema>"
"</Request>"
"</Autodiscover>",self.emailId.stringValue];
NSLog(@"%@",soapMessage);
NSURL *url = [NSURL URLWithString:@"https://<domainname>/EWS/Exchange.asmx"];
以上只是片段。已完整通过其他标头。
我的问题是在 C# 中传递用户凭证时,究竟在哪里传递,如下所示
ExchangeServiceBinding esb = new ExchangeServiceBinding();
esb.Credentials = new NetworkCredential("<username>", "<password>", "<domain>");
我尝试使用质询身份验证,也尝试使用在标头授权中发送它。但没有运气。
非常感谢任何帮助实现这一目标。