我正在研究类似这样的事情sync e-mail outlook2010 and sharepoint2010我正在寻找一种方法来登录sharepoint 2010中的outlook web部件自动使用登录的sharepoint用户是否有可能在C#中...我想摆脱kerberos验证和配置交换服务器我已经尝试了这个Get Current User Inbox和其他类似的但是它没有用。 有什么建议吗?
答案 0 :(得分:1)
登录凭据是否与Windows相同?如果是这样,您是否正确配置了浏览器?见browser setup for auto login
要登录尝试以下操作,从OWAInboxPart继承并在OnInit中使用当前用户创建邮箱名称,对于某些简单的问号似乎有效:
public class MyInbox : Microsoft.SharePoint.Portal.WebControls.OWAInboxPart
{
protected override void OnInit(object sender, EventArgs e)
{
this.MailboxName = ?;
base.OnInit (sender, e);
}
}
请看this discussion of how to get the mailbox for the current user。