博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
How to configure your MyInbox webpart automatically ?
阅读量:6894 次
发布时间:2019-06-27

本文共 2352 字,大约阅读时间需要 7 分钟。

 

It seems to be so difficult to configure your SharePoint Outlook webparts automatically, but it isn't !

Last week, I tried everything, but I failed to configure those Outlook webparts.
It seems to be nobody wants to configure a MyInbox automatically for every user on the MySite. I didn't found any website or blog with information, I just found some questions on forums without an answer.
So, Can I conclude that every user must know the servername and his mailboxname ?
No, it's irrealistic in my opinion !
This morning, I had 'one of my famous intelligent moments' *d'oh*
So, here's the one and only, the solution !
Follow the autoConfig lab below to succeed the configuration for every user at runtime
1. Create a new Webpart Library project
2. Override the CreateChildControls
// import section
using Microsoft.SharePoint.Portal.WebControls;
// attributes
private OWAInboxPart wpInbox;
protected override void CreateChildControls()
{
// inbox webpart
wpInbox = new OWAInboxPart();
Controls.Add(configureInbox(wpInbox));
}
3. Create a new method to configure your Inbox webpart. This method will determine the mailboxname and the servername at runtime for a particular user.
private OWAInboxPart configureInbox(OWAInboxPart wpInbox)
{
//Connect to the portal and get the portal context.
TopologyManager topology = new TopologyManager();
PortalSite portal = topology.PortalSites[new Uri(
)];
PortalContext context = PortalApplication.GetContext(portal);
//initialize user profile config manager object
UserProfileManager profileManager = new UserProfileManager(context);
UserProfile prof = profileManager.GetUserProfile(true);
// use the profile object to retrieve the properties you need in your company to
// retrieve the mailboxname
// example: string workmail = prof[PropertyConstants.WorkEmail].ToString();
wpInbox.MailboxName = "kristofdc";
wpInbox.OWAServerAddressRoot = "";
return wpInbox;
}
4. Override the RenderWebPart method
protected override void RenderWebPart(HtmlTextWriter output)
{
try
{
wpInbox.RenderControl(output);
}
catch(Exception ex)
{
output.Write(ex.ToString());
}
}
5. And finally you will add a CAB-setup for your custom webpart.
6. Just compile, deploy and use !
Remarks:
This MyInbox example works also with the MyCalendar & MyTasks.
Success garanteed !

转载于:https://www.cnblogs.com/ahghy/archive/2012/12/25/2831918.html

你可能感兴趣的文章
ZeroSpeech
查看>>
Fiddler 调试手机应用
查看>>
常用的正则表达式
查看>>
Jstl 中<c:if test="${value=='0'}"> 不能做判断??
查看>>
python matplotlib及sklearn安装
查看>>
困惑2017?
查看>>
KOTree
查看>>
BlockAlertsAnd-ActionSheets
查看>>
开源 java CMS - FreeCMS2.5 标签formTable自定义表单
查看>>
FreeCMS视频教程 将FreeCMS导入myeclipse
查看>>
Android 8.0 SystemUI(一):图文并茂的介绍 :D
查看>>
1wifi 简介(框架)
查看>>
internet && intranet
查看>>
go get报错 error: RPC failed; result=56, HTTP code =
查看>>
串行(Sequential)、并发(Concurrent)、并行(parallel)与分布式
查看>>
JAVA NIO学习笔记之Channel(基础篇)
查看>>
Xcode升级到6.4之后插件无法使用,重新安装最新也无法使用的解决办法
查看>>
秒懂科技新概念
查看>>
eclipse启动tomcat无法访问
查看>>
Notepad++ 书签
查看>>