Sign In
Dan's WebDAV 101
This blog covers Messaging API development for Exchange and Outlook. My name is Daniel Bagley, I'm on the Messaging Developer Team.
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
2007
appointment
attachments
C#
CDO
CDO 1.21
CDOEX
DevMsgTeam
EWS
example
Exchange
exchange web services
HOWTO
item
mapi
meeting
message
mime
Outlook
OWA
sample
VB
vbscript
WebDAV
webdav101blog
Archive
Archives
February 2012
(3)
January 2012
(1)
December 2011
(1)
September 2011
(9)
June 2011
(1)
February 2011
(1)
January 2011
(2)
December 2010
(2)
June 2010
(2)
January 2010
(1)
December 2009
(3)
November 2009
(1)
October 2009
(1)
August 2009
(2)
June 2009
(1)
April 2009
(2)
February 2009
(2)
January 2009
(6)
December 2008
(3)
October 2008
(3)
September 2008
(13)
August 2008
(7)
July 2008
(9)
June 2008
(3)
May 2008
(8)
April 2008
(4)
March 2008
(29)
February 2008
(9)
January 2008
(5)
November 2007
(11)
May 2007
(7)
April 2007
(2)
July 2006
(1)
June 2006
(1)
September, 2011
MSDN Blogs
>
Dan's WebDAV 101
>
September, 2011
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Dan's WebDAV 101
Microsoft Developer Support does not write or maintain customer production code.
Posted
8 months ago
by
Webdav101
0
Comments
Microsoft Developer Support does not write or maintain customer production code. If you want Microsoft to do the changes and implement production code, then MCS would be the more appropriate Microsoft organization. Also, you could engage a Microsoft Partner...
Dan's WebDAV 101
How to tell which authentication protocols can be used with WebDAV.
Posted
8 months ago
by
Webdav101
2
Comments
When you do an anonymous POST to the “exchange” virtual folder, you will get back a response which will tell you about which authentication protocols are supported. Each “WWW-Authenticate:” header in the response tells you which...
Dan's WebDAV 101
New to Exchange ActiveSync Development?
Posted
8 months ago
by
Webdav101
1
Comments
One area I do developer support for is EAS development with those who have an EAS client developmnet license and have a specific support agreement in thier Premier contract for EAS developer support - these are needed to get any EAS developer support...
Dan's WebDAV 101
Howto: Using EWS, get the original body type of a message without getting the best body of the message.
Posted
8 months ago
by
Webdav101
0
Comments
The PidTagNativeBody property (Property ID, 0x1016; Data Type 0x0003 (PtypInteger32)) should reflect the format of the body when a normal email message arrives in the inbox (not counting calendar messages such as meeting requests, etc.). If the message...
Dan's WebDAV 101
Howto: Set the organizer of a meeting on the calendar of an attendee using EWS.
Posted
8 months ago
by
Webdav101
1
Comments
I would like to say that this is something which is easily possible - however, I cannot. Setting the organizer directly in code is not supported. Historically, having the organizer over-writable has caused some pretty bad situations for customers. When...
Dan's WebDAV 101
Use Exchange PowerShell to get statistical information for Exchange Server ActiveSync
Posted
8 months ago
by
Webdav101
0
Comments
Background: To get information on EAS activity on an Exchange server, you will need to call Exchange PowerShell cmdlets. PowerShell is used for doing administrative work against Exchange. Each administrative task is done through an Exchange cmllet...
Dan's WebDAV 101
Howto: Example to retrieve the body property of a message using the Exchange Managed API.
Posted
8 months ago
by
Webdav101
2
Comments
public string GetItemMime(ItemId oItemId) { string sReturn = string.Empty; PropertySet oMimePropertySet = new PropertySet(ItemSchema.MimeContent); Item oItem = Item.Bind(_ExchangeService, oItemId, oMimePropertySet); return oItem.MimeContent...
Dan's WebDAV 101
Howto: Example to retrieve the html body property of a message using the Exchange Managed API.
Posted
8 months ago
by
Webdav101
0
Comments
public string GetMessageBodyAsHtml(Item oItem) { string sRet = string.Empty; PropertySet oPropSet = new PropertySet(PropertySet.FirstClassProperties); oItem.Load(PropertySet.FirstClassProperties); PropertySet oPropSetForBodyText ...
Dan's WebDAV 101
Howto: Example to retrieve the body property of a message using the Exchange Managed API.
Posted
8 months ago
by
Webdav101
0
Comments
public string GetMessageBody(Item oItem, BodyType oBodyType) { string sRet = string.Empty; PropertySet oPropSet = new PropertySet(PropertySet.FirstClassProperties); oItem.Load(PropertySet.FirstClassProperties); PropertySet oPropSetForBodyText...
Page 1 of 1 (9 items)