切换到宽版
Exchange 中文站
Exchange 2003
Exchange 2007
Exchange 2010
Exchange 2013
勋章中心
下拉
用户名
电子邮箱
用户名
密 码
记住登录
登录
找回密码
注册
快捷通道
关闭
您还没有登录,快捷通道只有在登录后才能使用。
立即登录
还没有帐号? 赶紧
注册一个
Exchange论坛
Exchange视频
Exchange技术论坛
>
Exchange 二次开发
>
Exchange Server 2007 二次开发 (二)
发帖
回复
返回列表
10952
阅读
3
回复
[分享]
Exchange Server 2007 二次开发 (二)
[复制链接]
上一主题
下一主题
tata
UID:10027
注册时间
2010-11-12
最后登录
2015-11-13
在线时间
866小时
发帖
363
搜Ta的帖子
精华
0
金币
186
访问TA的空间
加好友
用道具
初级工程师
关闭
个人中心可以申请新版勋章哦
立即申请
知道了
加关注
发消息
只看楼主
倒序阅读
0楼
发表于: 2011-02-19
关键词:
exchange
能过
Exchange Server 2007 二次开发(一)
,相信对
Exchange
Server 2007二次开发有了初步的了解,在本文中,是我在项目中对EWS的具体应用。
要使用EWS,首先要设置ExchangeServiceBinding代理类,如下:
ExchangeServiceBinding esb = new ExchangeServiceBinding();
esb.Url = EWS地址;
esb.Credentials = new NetworkCredential(用户名, 密码, 域名);
这样我们就创建了该用户的代理,通过这个代理可以进行收发邮件、预定会议、应答会议等。
也可以用这种方式创建esb.Credentials=CredentialCache.DefaultCredentials,这样为当前登录系统的账户创建代理。
以下是一些具体的应用示例:
创建普通邮件:
1
public
static
void
CreateEmail(ExchangeServiceBinding esb)
2
{
3
createItemRequest
=
new
CreateItemType();
4
createItemRequest.MessageDisposition
=
MessageDispositionType.SendAndSaveCopy;
5
createItemRequest.MessageDispositionSpecified
=
true
;
6
//
Specify the location of sent items.
7
createItemRequest.SavedItemFolderId
=
new
TargetFolderIdType();
8
DistinguishedFolderIdType sentitems
=
new
DistinguishedFolderIdType();
9
sentitems.Id
=
DistinguishedFolderIdNameType.sentitems;
10
createItemRequest.SavedItemFolderId.Item
=
sentitems;
11
//
Create the array of items.
12
createItemRequest.Items
=
new
NonEmptyArrayOfAllItemsType();
13
//
Create a single e-mail message.
14
MessageType message
=
new
MessageType();
15
message.Subject
=
"
test
"
;
16
message.Body
=
new
BodyType();
17
message.Body.BodyType1
=
BodyTypeType.Text;
18
message.Body.Value
=
"
this is a test mail from exchange services
"
;
19
message.ItemClass
=
"
IPM.Note
"
;
20
message.From
=
new
SingleRecipientType();
21
message.From.Item
=
new
EmailAddressType();
22
message.ToRecipients
=
new
EmailAddressType[
1
];
23
message.ToRecipients[
0
]
=
new
EmailAddressType();
24
message.ToRecipients[
0
].EmailAddress
=
"
收件人地址
"
;
25
message.Sensitivity
=
SensitivityChoicesType.Confidential;
26
message.Importance
=
ImportanceChoicesType.High;
27
//
Add the message to the array of items to be created.
28
createItemRequest.Items.Items
=
new
ItemType[
1
];
29
createItemRequest.Items.Items[
0
]
=
message;
30
try
31
[img]http://www.cnblogs.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif[/img]
{
32
[img]http://www.cnblogs.com/Images/OutliningIndicators/InBlock.gif[/img]
//
Send the request to create and send the e-mail item, and get the response.
33
[img]http://www.cnblogs.com/Images/OutliningIndicators/InBlock.gif[/img]
CreateItemResponseType createItemResponse
=
esb.CreateItem(createItemRequest);
34
[img]http://www.cnblogs.com/Images/OutliningIndicators/InBlock.gif[/img]
//
Determine whether the request was a success.
35
[img]http://www.cnblogs.com/Images/OutliningIndicators/InBlock.gif[/img]
if
(createItemResponse.ResponseMessages.Items[
0
].ResponseClass
==
ResponseClassType.Error)
36
[img]http://www.cnblogs.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif[/img]
{
37
[img]http://www.cnblogs.com/Images/OutliningIndicators/InBlock.gif[/img]
throw
new
Exception(createItemResponse.ResponseMessages.Items[
0
].MessageText);
38
[img]http://www.cnblogs.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif[/img] }
39
[img]http://www.cnblogs.com/Images/OutliningIndicators/InBlock.gif[/img]
else
40
[img]http://www.cnblogs.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif[/img]
{
41
[img]http://www.cnblogs.com/Images/OutliningIndicators/InBlock.gif[/img] Console.WriteLine(
"
Item was created
"
);
42
[img]http://www.cnblogs.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif[/img] }
43
[img]http://www.cnblogs.com/Images/OutliningIndicators/InBlock.gif[/img]
44
[img]http://www.cnblogs.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif[/img] }
45
[img]http://www.cnblogs.com/Images/OutliningIndicators/InBlock.gif[/img]
catch
(Exception e)
46
[img]http://www.cnblogs.com/Images/OutliningIndicators/ExpandedSubBlockStart.gif[/img]
{
47
[img]http://www.cnblogs.com/Images/OutliningIndicators/InBlock.gif[/img] Console.WriteLine(e.Message);
48
[img]http://www.cnblogs.com/Images/OutliningIndicators/ExpandedSubBlockEnd.gif[/img] }
49
[img]http://www.cnblogs.com/Images/OutliningIndicators/InBlock.gif[/img]
50
[img]http://www.cnblogs.com/Images/OutliningIndicators/ExpandedBlockEnd.gif[/img] }
[ 此帖被tata在2011-02-19 14:36重新编辑 ]
共
条评分
回复
举报
分享到
script
UID:11734
注册时间
2011-03-09
最后登录
2015-02-02
在线时间
37小时
发帖
89
搜Ta的帖子
精华
0
金币
170
访问TA的空间
加好友
用道具
技术人员
加关注
发消息
只看该作者
1楼
发表于: 2011-03-09
Exchange的开发要好好学,公司也有这样的需求。
共
条评分
回复
举报
sjhqqq
UID:8789
注册时间
2010-09-03
最后登录
2013-09-02
在线时间
9小时
发帖
4
搜Ta的帖子
精华
0
金币
15
访问TA的空间
加好友
用道具
技术学徒
加关注
发消息
只看该作者
2楼
发表于: 2011-12-19
好东西啊,可惜我的技术还没到那个程度
共
条评分
回复
举报
asd135521591
UID:19412
注册时间
2013-02-20
最后登录
2013-02-20
在线时间
0小时
发帖
11
搜Ta的帖子
精华
0
金币
23
访问TA的空间
加好友
用道具
技术学徒
加关注
发消息
只看该作者
3楼
发表于: 2013-02-20
共
条评分
回复
举报
发帖
回复
返回列表
http://bbs.exchangecn.com
访问内容超出本站范围,不能确定是否安全
继续访问
取消访问
快速回复
限60 字节
您目前还是游客,请
登录
或
注册
进入高级模式
文字颜色
发 布
回复后跳转到最后一页
上一个
下一个
关闭
补充发布信息
验证码:
验证问题:
11 - 3 = ?
发 布
隐藏
快速跳转
Microsoft 企业云服务
Office 365 定制版用户讨论区
Exchange 技术讨论
Exchange Server 2016
Exchange Server 2013
Exchange Server 2010
Exchange Server 2007
Exchange Server 2003
Exchange 相关技术
Exchange 事件日志
Exchange 二次开发
Microsoft Outlook
Exchange 资源下载
Exchange 2003 资源下载
Exchange 2007 资源下载
Exchange 2010 资源下载
Exchange 招聘求职
Exchange 招聘 | 求职
Exchange 社区站务
站内站务
关闭
关闭
选中
1
篇
全选