Hobby Chef
Browse by Tags - Jive into Messaging world - Site Home - MSDN Blogs
Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Browse by Tags
Search
Archives
Archives
June 2011
(3)
January 2011
(1)
September 2010
(1)
July 2010
(4)
June 2010
(2)
May 2010
(2)
April 2010
(2)
January 2010
(2)
November 2009
(1)
October 2009
(3)
September 2009
(1)
June 2009
(2)
May 2009
(2)
April 2009
(4)
March 2009
(4)
February 2009
(4)
January 2009
(3)
November 2008
(2)
October 2008
(6)
September 2008
(2)
August 2008
(3)
July 2008
(2)
April 2008
(2)
February 2008
(1)
December 2007
(1)
November 2007
(6)
October 2007
(5)
September 2007
(1)
August 2007
(2)
July 2007
(3)
June 2007
(10)
April 2007
(1)
Tags
Announcements
BUG
CDO
CDOEXM
CDOSYS
CoolStuff
DevMsgTeam
ERROR
Exchange
Exchange 2007
Exchange Web Services
ExchangeServiceBinding
GetItem
HOWTO
MAPI
Messaging
OOM
Outlook
Powershell
Samples
Search Folder
System.Net.Mail
VBScript
WEBDAV
Workarounds
Common Tasks
Blog Home
Email Blog Author
About
RSS for posts
RSS for comments
Tagged Content List
Blog Post:
Draft: How to take EWS/OWA/ETL trace to troubleshoot Exchange Web Services issues – EXCHANGE 2007 & 2010
Vikas - MSFT
THIS IS A DRAFT DOCUMENT AND MAY CHANGE WITHOUT PRIOR NOTICE. PURPOSE: Collect ETL trace from Exchange Server 2007 & 2010 to troubleshoot Exchange Web Services related issues. Applies to: Microsoft® Exchange Server© 2007 & 2010 Steps 1) Go to CAS Server and fire up Extra.exe (%PROGRAMFILES%\Microsoft...
on
23 Jun 2011
Blog Post:
Exchange Web Services 101 : Let’s get started!
Vikas - MSFT
Want to learn Exchange Web Service but not sure how and from where? Here are the few articles that I share very often with partners and customers who want to learn more about Exchange Web Services. Undoubtedly there is so much information out there and that’s too in such a short span of time. You better...
on
19 Jun 2009
Blog Post:
HOWTO: EWS: Get OOF State for Self or any user in your organization
Vikas - MSFT
First thing first, this is just for demonstration purpose and might *not* be a supported solution by Microsoft. The setting we are reading from are hidden messages and not documented anywhere. I had to reverse engineer it for demonstration purpose. Objective : To get OOF State of any user in your organization...
on
29 May 2009
Blog Post:
Searchfolder created from EWS is not displaying items falling under criteria within Outlook
Vikas - MSFT
I have been working on different SearchFolders cases lately where customers were trying to create SearchFolder using EWS. Working on those issues has uncovered a limitation of Outlook (I tested it on 2007, but may exist with earlier versions as well) I created the search folder using the following XML...
on
9 Apr 2009
Blog Post:
HOW TO: Create SearchFolder to search for Custom Properties using EWS
Vikas - MSFT
Here is a quick sample if you are looking at creating a search folder using EWS which will look for Custom Property. Here we are looking for a custom property named “EmployeeID” and make sure that the property exist and does not have a blank value. public static BaseFolderType CreateCustomPropSearchFolder...
on
9 Apr 2009
Blog Post:
HOWTO: Create Search Folder using Exchange Impersonation for multiple users via Exchange Web Services
Vikas - MSFT
What are we doing here? What is Search Folder? Why do I care? Search folders are a quick way to bookmark your frequently searched items. It allows you to save a search query with predefined parameters for quick access. For instance I am always looking for emails with attachments and from a particular...
on
23 Feb 2009
Blog Post:
Attachments go crazy and loose their positions when item is touched by Exchange Web Services
Vikas - MSFT
My fellow colleague had this customer who was using Exchange Web Services to update body of an appointment item. He created a new appointment from Outlook with some body text, attachments in the body to the position where he wanted, subject & location. Appointment was saved as it should and life...
on
10 Oct 2008
Blog Post:
BUG: HasAttachments property is false on meeting occurrence with attachment
Vikas - MSFT
I thought it was just the last month full of bugs and fixes. This month also started with a Exchange Web Services bug.. or better Exchange Bug as Exchange Web Service is just a victim :( If you add an attachment to a single occurrence of a recurring CalendarItem, and then call GetItem with AllProperties...
on
10 Oct 2008
Blog Post:
BUG: 'ErrorNoPublicFolderServerAvailable' is not a valid value for ResponseCodeType
Vikas - MSFT
Another fine day and some great timings. I was discussing this bug with product group hoping that it is not faced by anyone outside Microsoft and then the phone rings.... I am getting the following error while trying to do a FindFolder call on to Public Folders Exception Type - System.InvalidOperationException...
on
1 Oct 2008
Blog Post:
HOWTO: EWS: Update IsRead Flag for items using Exchange Web Services
Vikas - MSFT
First thing first, you cannot use Exchange Web Services (as of now) to update the IsRead flag for items other than MessageType. MessageType has IsRead property in place to update the MAPI property PR_MESSAGE_FLAGS. Product group is aware of this limitation and very soon we should see an fix for this...
on
30 Nov 2007
Blog Post:
HOWTO: EWS: Consume Exchange Web Service from VBScript
Vikas - MSFT
Yes you can consume Exchange Web Service using VBScript or any language / platform which support HTML. In this sample, I have used XMLHTTP to send/receive soap request/response. Then I have used MSXML Document to parse the XML returned by the server to get the response code. I have converted my...
on
21 Nov 2007
Blog Post:
HOWTO: EWS: Disable Out-of-office / OOF message
Vikas - MSFT
WebDav is definitely de-emphasized and not recommended to develop applications for Exchange 2007. But WebDav was still the easiest method to disable OOF message. I was not surprised to see it NOT working against Exchange 2007 to disable the OOF message. I have a better solution for you… use my favorite...
on
19 Nov 2007
Blog Post:
HOWTO: EWS: Find all folders inside a parent folder, helpful in generating a folder tree
Vikas - MSFT
Looks cool isn’t it? I have created this folder tree for my mailbox using Exchange Web Services. You can do the very same. Here is the code which I am using to get all the folders inside a folder and recursively go deep-n-deep until your reach the core. Here is the sample code… ///...
on
14 Nov 2007
Blog Post:
HOWTO: EWS: Add attachments to existing items on server
Vikas - MSFT
Forgot to add that attachment? Using exchange web service you can add it back to the item on the server. The code is simple and very easy to understand. It takes two parameters itemID – where attachment will be added, & strFileName – complete path to the local file. private bool AddAttachment...
on
16 Oct 2007
Blog Post:
HOWTO: EWS: Get LastModifiedTime for Items
Vikas - MSFT
So wondering where is LastModifiedTime? Exchange Web Services does not seem to give you the hint when the item was last modified. This property is not available in ItemType and expected to be available only after Exchange 2007 SP1. You can get the LastModifiedTime with the help of ExtendedProperty...
on
16 Oct 2007
Blog Post:
HOWTO: EWS: Use GetAttachment to download attachments off Mail/Appointment
Vikas - MSFT
I have fallen for exchange web services. There are endless possibilities with exchange web services, and product group is still working to make it even better. Today I have created a neat sample to download attachments off Exchange Server Sample: DownloadAttachments Input Params: itemID , folder...
on
15 Oct 2007
Blog Post:
HOWTO: GetFolder, FindItem, Restriction, GetItem
Vikas - MSFT
This is an attempt to extend my previous code sample Getting into a folder by path using EWS With this code sample I have demonstrated HOWTO find items under a folder. I have used Restriction to list down all the "IPM.Note" items falling under a specified date/time span. class EWS_SAMPLE ...
on
26 Jul 2007
Page 1 of 1 (17 items)