<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Exchange Web Services and MAPI Props</title><link>http://blogs.msdn.com/b/stephen_griffin/archive/2006/12/20/exchange-web-services-and-mapi-props.aspx</link><description>Merry Christmas! With Exchange 12 (whoops! Exchange 2007 ) just around the corner, we're starting to get questions about Exchange Web Services. I just helped a customer with a sample illustrating the use of AdditionalProperties to fetch arbitrary MAPI</description><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>re: Exchange Web Services and MAPI Props</title><link>http://blogs.msdn.com/b/stephen_griffin/archive/2006/12/20/exchange-web-services-and-mapi-props.aspx#10043996</link><pubDate>Thu, 29 Jul 2010 20:32:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10043996</guid><dc:creator>ExchangeWebServices Namespace</dc:creator><description>&lt;p&gt;I&amp;#39;m trying to use classes and methods documented in the Namespace ExchangeWebServices but when I add the Web reference can not get all methods and classes that allow me to do Bulk Transfer Operations &amp;nbsp;with ExportItems Operation and Operation UploadItems as shown in the documentation: &lt;a rel="nofollow" target="_new" href="http://msdn.microsoft"&gt;http://msdn.microsoft&lt;/a&gt; .com/en-us/library/bb409286.aspx.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10043996" width="1" height="1"&gt;</description></item><item><title>re: Exchange Web Services and MAPI Props</title><link>http://blogs.msdn.com/b/stephen_griffin/archive/2006/12/20/exchange-web-services-and-mapi-props.aspx#9691634</link><pubDate>Wed, 03 Jun 2009 18:55:12 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9691634</guid><dc:creator>Sven Hornberg</dc:creator><description>&lt;p&gt;I'm currently trying to include exchange webservices 2007 functionality in a custom web application which is running on a Windows 2008 Server (IIS 7, Exchange Server 2007).&lt;/p&gt;
&lt;p&gt;How do I access exchange 2007 webservices from my web application ? I currently use the defaultcredentials and receive an error, saying I don't have the required authorization (error 401).&lt;/p&gt;
&lt;p&gt;Stating the credentials explicitly in the code works perfectly fine when trying to execute the code remotely, whether including the domain or not.&lt;/p&gt;
&lt;p&gt;When executing the code locally on either the web server or my client computer, no problems occur. The web application I intend to write is supposed to run on the server and be accessed from any computer via my company's intranet.&lt;/p&gt;
&lt;p&gt;The code looks something like this..&lt;/p&gt;
&lt;p&gt; ExchangeServiceBinding binding = new ExchangeServiceBinding();&lt;/p&gt;
&lt;p&gt; binding.Url = @&amp;quot;&lt;a rel="nofollow" target="_new" href="https://server/ews/exchange.asmx&amp;quot;;"&gt;https://server/ews/exchange.asmx&amp;quot;;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; binding.Credentials = System.Net.CredentialCache.DefaultNetworkCredentials;&lt;/p&gt;
&lt;p&gt; CreateItemType createItemType = new CreateItemType();&lt;/p&gt;
&lt;p&gt; .. (creating item and setting it's properties)&lt;/p&gt;
&lt;p&gt; try&lt;/p&gt;
&lt;p&gt; {&lt;/p&gt;
&lt;p&gt; &amp;nbsp;CreateItemResponseType createItemResponse = binding.CreateItem(createItemType); &amp;lt;- the error seems to occur here &amp;nbsp;} &amp;nbsp;catch (Exception ex) &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp;Response.Write(ex.ToString()); &amp;lt;- results in error &amp;quot;unauthorized&amp;quot;&lt;/p&gt;
&lt;p&gt; }&lt;/p&gt;
&lt;p&gt;The authentication settings in IIS 7 are as follows:&lt;/p&gt;
&lt;p&gt;anonymous authentication: deactivated&lt;/p&gt;
&lt;p&gt;ASP.NET multiple identities: activated&lt;/p&gt;
&lt;p&gt;digest authentication: deactivated&lt;/p&gt;
&lt;p&gt;forms authentication: deactivated&lt;/p&gt;
&lt;p&gt;standard authentication: deactivated&lt;/p&gt;
&lt;p&gt;windows authentication: deactivated&lt;/p&gt;
&lt;p&gt;User permissions set:&lt;/p&gt;
&lt;p&gt;SYSTEM: full access rights&lt;/p&gt;
&lt;p&gt;(windows user): full access rights&lt;/p&gt;
&lt;p&gt;IUSR: full access&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9691634" width="1" height="1"&gt;</description></item><item><title>re: Exchange Web Services and MAPI Props</title><link>http://blogs.msdn.com/b/stephen_griffin/archive/2006/12/20/exchange-web-services-and-mapi-props.aspx#9593075</link><pubDate>Thu, 07 May 2009 10:49:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9593075</guid><dc:creator>Renata</dc:creator><description>&lt;p&gt;I have a big problem. I have a VB application that gets users from Exchange server, and gets their calendars using MAPI. &lt;/p&gt;
&lt;p&gt;Now I'm porting that application to .NET and I'm using Exchange Web Service API. The problem is that I can't take the PR_STORE_ENTRYID Property of the contact. Within the old code, I took it by AddressEntry.ID and I store that in database, and now I should take that StoreID with EWS API, but I don't know how. I know that I should use ExtendedProperties, and PropertyID = &amp;quot;Ox0FFB&amp;quot;, but have no idea in which way :(&lt;/p&gt;
&lt;p&gt;Please, I appreciate if you can help me.&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9593075" width="1" height="1"&gt;</description></item><item><title>Links on Common Exchange Web Services (EWS) Questions</title><link>http://blogs.msdn.com/b/stephen_griffin/archive/2006/12/20/exchange-web-services-and-mapi-props.aspx#8974662</link><pubDate>Fri, 03 Oct 2008 02:55:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8974662</guid><dc:creator>Dan's WebDAV 101</dc:creator><description>&lt;p&gt;I've put together a list of articles which cover common questions on Exchange Web Services (EWS). These&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8974662" width="1" height="1"&gt;</description></item><item><title>Links on Common Exchange Web Services (EWS) Questions</title><link>http://blogs.msdn.com/b/stephen_griffin/archive/2006/12/20/exchange-web-services-and-mapi-props.aspx#8974405</link><pubDate>Fri, 03 Oct 2008 00:02:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8974405</guid><dc:creator>Dan's WebDAV 101</dc:creator><description>&lt;p&gt;I've put together a list of articles which cover common questions on Exchange Web Services (EWS). These&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8974405" width="1" height="1"&gt;</description></item><item><title>re: Exchange Web Services and MAPI Props</title><link>http://blogs.msdn.com/b/stephen_griffin/archive/2006/12/20/exchange-web-services-and-mapi-props.aspx#8647048</link><pubDate>Tue, 24 Jun 2008 15:18:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8647048</guid><dc:creator>Shilpa Bhasin</dc:creator><description>&lt;p&gt;I am working on a problem where I want to decode a TNEF encoded MIME message. I am using the class Base64Decode in Microsoft.Exchange.data.Mime namespace and I am also able to decode the message if it doesn't contain an attachment . But , for a TNEF encoded message without attachment , the conversion fails. Do you have any suggestions ? Please help .&lt;/p&gt;
&lt;p&gt;In addition to that , could you provide me some sample code to parse a MIME message using MimeDocument,MimeReader and Tnef Reader classes?&lt;/p&gt;
&lt;p&gt;Thanks in advance&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8647048" width="1" height="1"&gt;</description></item><item><title>re: Exchange Web Services and MAPI Props</title><link>http://blogs.msdn.com/b/stephen_griffin/archive/2006/12/20/exchange-web-services-and-mapi-props.aspx#8587952</link><pubDate>Tue, 10 Jun 2008 03:17:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8587952</guid><dc:creator>Stephen Griffin - MSFT</dc:creator><description>&lt;p&gt;If it's possible to issue HTTP requests from your mobile, then you should be able to use a web service. So - however you would use a web service from there, you can adapt that to use EWS.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8587952" width="1" height="1"&gt;</description></item><item><title>re: Exchange Web Services and MAPI Props</title><link>http://blogs.msdn.com/b/stephen_griffin/archive/2006/12/20/exchange-web-services-and-mapi-props.aspx#8587849</link><pubDate>Tue, 10 Jun 2008 02:36:08 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8587849</guid><dc:creator>Mudit</dc:creator><description>&lt;p&gt;HOw to do this a mobile not using Outlook(hence no POOM)?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8587849" width="1" height="1"&gt;</description></item><item><title>re: Exchange Web Services and MAPI Props</title><link>http://blogs.msdn.com/b/stephen_griffin/archive/2006/12/20/exchange-web-services-and-mapi-props.aspx#1911129</link><pubDate>Mon, 19 Mar 2007 08:49:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1911129</guid><dc:creator>Mani</dc:creator><description>&lt;p&gt;Can you post the services.wsdl online? I would like to see it without installing exchange 2007...&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=1911129" width="1" height="1"&gt;</description></item><item><title>How do I access my Outlook contacts from my web application?</title><link>http://blogs.msdn.com/b/stephen_griffin/archive/2006/12/20/exchange-web-services-and-mapi-props.aspx#1561187</link><pubDate>Wed, 31 Jan 2007 06:49:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1561187</guid><dc:creator>Wes' Blog</dc:creator><description>&lt;P&gt;Question How do I access my Outlook contacts from my web application? Short Answer You don't, well at&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=1561187" width="1" height="1"&gt;</description></item></channel></rss>