sharepoint - 如何在 sharepoint 2010 中自动登录 owa web part

标签 sharepoint sharepoint-2010 outlook web-parts outlook-web-app

我正在做这样的事情 sync e-mail outlook2010 and sharepoint2010我正在寻找一种使用已登录的 sharepoint 用户自动登录 sharepoint 2010 中的 Outlook Web 部件的方法是否可以在 C# 中实现.. 我想摆脱 kerberos 身份验证并配置交换服务器和其他类似的,但没有用。
有什么建议?

最佳答案

登录凭据是否与 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 .

关于sharepoint - 如何在 sharepoint 2010 中自动登录 owa web part,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16056099/

相关文章:

wcf - SharePoint Foundation 2010 中的 SVC 给出 HTTP 400 : Bad Request

sharepoint-2010 - Sharepoint Workspace 2010 本地商店位置

vba - 为什么同一个Err.Description有多个Err.Number?

sharepoint - 确定输入的值是用户还是组 - 客户端对象模型

go - 使用用户凭据访问 Sharepoint API

c# - SharePoint 代码中的内存泄漏?

vb.net - 无法从 Outlook.MailItem 中删除附件

sharepoint - 在 SharePoint 2013 Webpart 中使用 Signalr

sharepoint - 面向 SharePoint 2007 开发人员的 SharePoint 2010 入门

excel - VBA Outlook 调用 Excel 宏并等待宏完成