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
Tags
.msg
.net
2000
2003
2007
2010
activesync
api
appointment
appointments
attachment
attachments
authentication
basic
body
C#
c++
CDO
CDO 1.21
CDOEX
CDOSYS
crash
create
Csharp
custom
custom mail headers
debugging
delete
DevMsgTeam
distribution
dump
dumps
eas
enumerate
EWS
example
examples
Exchange
Exchange 2007
Exchange 2010
exchange managed API
exchange web services
exoledb
FBA
file
folder
folders
Forms based authentication
free
freebusy
get
hang
HOWTO
http
ical
icalendar
item
List
mailbox
mapi
meeting
meeting request
message
message body
messaging
mime
MOVE
oof
OOM
Outlook
OWA
powershell
properties
propfind
proppatch
put
read
sample
samples
schema
script
search
security
smtp
stream
support
supported
System.Net.Mail
System.Web.Mail
VB
vb script
vb.net
vb6
VBS
vbscript
VCalendar
webbdav
WebDAV
webdav101blog
xml
Browse by Tags
MSDN Blogs
>
Dan's WebDAV 101
>
All Tags
>
cdo 1.21
Tagged Content List
Blog Post:
FYI: The latest version of the Exchange MAPI download was released yesterday.
Webdav101
The latest version of the Exchange MAPI download was released yesterday. Microsoft Exchange Server MAPI Client and Collaboration Data Objects 1.2.1 http://www.microsoft.com/downloads/details.aspx?familyid=e17e7f31-079a-43a9-bff2-0a110307611e&displaylang=en
on
10 Dec 2009
Blog Post:
Howto: Accept meeting requests with VB6 and CDO 1.21
Webdav101
Here is a sample to accept all meeting requests using CDO 1.21. ' The code below will accept all meeting requests in the users inbox. Private Sub cmdAcceptRecurringMeeting_Click() Dim objSession As mapi.Session Dim ObjMessage As mapi.Message Dim oMessages As mapi.Messages Dim oAppointment As mapi...
on
21 Oct 2008
Blog Post:
My .EDB file grows when I search.
Webdav101
When doing a WebDAV or any other search, you will likely see the .EDB file expands. When performing a search against a mailbox using WebDAV or any other API, you may see the .EDB file grow in size. Don't panic, this is normal. When a search is performed, Exchange will put the results into a search...
on
18 Jul 2008
Blog Post:
HOWTO: VB/CDO 1.21 - Cancel a Recurring Meeting using a single Recurrance
Webdav101
' This code finds an meeting occurance and uses it to cancel the entire meeting series and ' have "Cancelled:" in front of the subject lines on the update messages sent to the recipient(s). ' To use: ' Create a recurring meeting inside the date/time range below with the subject "testabc". ' Invite an...
on
5 May 2008
Blog Post:
CDO 1.21 and Unicode Text (Japanese, Chinese, Korean, etc)
Webdav101
CDO 1.21 and Unicode Text (Japanese, Chinese, Korean, etc) Having issues using CDO 1.21 with multi-byte (unicode) languages such as Japanese, Korean, Chinese? Do you want a way to create an appointment item with Japanese text using CDO 1.21? This is not as straight-forward as it should be, here...
on
14 Feb 2008
Blog Post:
Setting MeetingStatus to CdoNonMeeting using CDO will cause the AllDay flag to not be set on an occurance in Outlook.
Webdav101
If you use CDO 1.21 to set the MeetingStatus to CdoNonMeeting for a single occurance of an all day recurring appointment, you will find that the AllDay flag is not set when the appointment is converted to a meeting and accepted by the attendee. Private Sub cmdMakeInstanceAllDay_Click() Dim objSession...
on
1 Feb 2008
Blog Post:
Setting timezone options with CDO 1.21.
Webdav101
CDO 1.21 Timezone information is stored in a a property inside of the user's mailbox and is CDO 1.21 specific. It is set any time a CDO 1.21 session sets the time zone and persists for that user until changed. This means it will be used by any subsequent CDO 1.21 session. OWA 5.5 will affect the timezone...
on
31 Jan 2008
Blog Post:
HOWTO: CDO 1.21/VBS - Get Free/Busy information
Webdav101
'----------------------------------------------------------- ' getfbCDO121.vbs - Get Free/Busy information using CDO1.21 and vbs ' Instructions: ' Save to a file called getfbCDO121.vbs ' Do the TODO: sections ' Run from the command line using: cscript getfbCDO121.vbs '-------------------------------...
on
29 Nov 2007
Blog Post:
HOWTO: CDO 1.21/VB Expand a Distribution List
Webdav101
'HOWTO: CDO 1.21/VB Expand a Distribution List ' TODO: Create a new VB Project ' TODO: Set a reference to CDO 1.21 ' TODO: Add a button to the form and paste this code in. ' TODO: Change TODO: sections below. Private Sub Command1_Click() Dim objSession As MAPI.Session Dim ObjMessage As MAPI...
on
29 Nov 2007
Blog Post:
HOWTO: VB/CDO 1.21 - Delete inbox message attachments over certain size
Webdav101
Here is an example: 'How to read the Inbox messages and delete attachments over a given size using VB and CDO 1.21 ' This example deletes all jpg file attachments over a certain size in an inbox. Const CONST_MAX_JPG_ATTACHMENT = 3000 ' TODO: Change this - max jpg file size Dim sErrorMessage As String...
on
29 Nov 2007
Blog Post:
HOWTO: Use PS_INTERNET_HEADERS with cdo 1.21 for custom properties
Webdav101
How to use PS_INTERNET_HEADERS with CDO 1.21 for custom properties. 'This example uses PS_INTERNET_HEADERS for setting a custom property const smbx="mymailbox" ' TODO: Change const ssrv="myserver" ' TODO: Change const mycdoInetPset = "8603020000000000C000000000000046" const myXheader = "X-SPAM...
on
29 Nov 2007
Blog Post:
How to use PS_INTERNET_HEADERS with cdo 1.21 for custom properties.
Webdav101
'This example uses PS_INTERNET_HEADERS for setting a custom property const smbx="mymailbox" ' TODO: Change const ssrv="myserver" ' TODO: Change const mycdoInetPset = "8603020000000000C000000000000046" const myXheader = "X-SPAM" ' TODO: Change to your property set oses=createobject("mapi.session...
on
4 May 2007
Blog Post:
HOWTO: VB6/CDO 1.21 - expand a distribution list
Webdav101
Below is a sample: ' TODO: Create a new VB Project ' TODO: Set a reference to CDO 1.21 ' TODO: Add a button to the form and paste this code in. ' TODO: Change TODO: sections below. Private Sub Command1_Click() Dim objSession As MAPI.Session Dim ObjMessage As MAPI.Message Dim objUseRecips...
on
4 May 2007
Blog Post:
How to add a holiday to a calendar using VB and CDO 1.21.
Webdav101
' How to add a holiday to a calendar using VB and CDO 1.21. ' ' This example code shows how to add a holiday to a calendar using VB and CDO 1.21. ' Set a reference to CDO 1.21 and do the TODO sections in the code. ' Holidays are All Day Appointments with the Category of "Holiday" set. ' ' CDO 1.21 can...
on
12 Apr 2007
Blog Post:
Tools for Diagnosing Problems with Messaging Software
Webdav101
There are many tools which are useful for diagnosing problems with Messaging APIs. Attached, you will find a document which outlines several tools which you may find useful. Please note that this there is no endorsement or peference over any one tool over another. This posting is provided "AS IS...
on
30 Jun 2006
Page 1 of 1 (15 items)