Browse by Tags

All Tags » devmsgteam » Exchange Web Services   (RSS)
Showing page 1 of 7 (64 total posts)
  • Exchange Server 2007 SP2 Update Rollup1 is available to download

    Exchange Server 2007 SP2 Update Rollup 1 is available to download @ Download the Exchange2007-KB971534-EN package now . Update Rollup 1 for Exchange Server 2007 Service Pack 2 (SP2) resolves issues that were found in Exchange Server 2007 SP2 since the software was released. This update rollup is highly recommended for all Exchange Server 2007 SP2 customers. For the details related to the issue fixed by it refer to Description of Update Rollup 1 for Exchange Server 2007 Service Pack 2 .   If
    Posted to Brijs Blogging... Looking Beyond the Obvious (Weblog) by brijs on November 19, 2009
    Filed under: DevMsgTeam, Exchange Server 2007, Exchange Web Services, Download, FYI
  • Exchange Web Services Managed API and EWS Editor is available!

    If you are developing using Exchange Web Services Managed API then now you can download @ Microsoft Exchange Web Services (EWS) Managed API 1.0 The Microsoft Exchange Web Services (EWS) Managed API 1.0 provides a managed interface for developing client applications that use Exchange Web Services. The EWS Managed API simplifies the implementation of applications that communicate with Microsoft Exchange Server 2007 Service Pack 1 (SP1) and later versions of Microsoft Exchange. Built on the Exchange
    Posted to Brijs Blogging... Looking Beyond the Obvious (Weblog) by brijs on November 13, 2009
    Filed under: DevMsgTeam, .Net, Exchange Server 2007, General, Exchange Web Services, Exchange Web Services Managed API, Exchange Server 2010, FYI, Learn
  • How to do FindItem using Extended MAPI Properties in a Exchange Web Service call?

    We can perform GetItem Exchange Web Service call to get Extended MAPI Properties refer my previous post How to get Extended MAPI Properties in the GetItem Exchange Web Service call? and can also perform FindItem based on the Extended MAPI Properties. In the sample code given below we would use CleanGlobalObjectId to perform FindItem for Calendar Items: NOTE: Following programming examples is for illustration only, without warranty either expressed or implied, including, but not limited to, the implied
    Posted to Brijs Blogging... Looking Beyond the Obvious (Weblog) by brijs on November 12, 2009
    Filed under: DevMsgTeam, How to, C#, Exchange Server 2007, EWS, Exchange Web Services, Exchange Server 2010
  • Announcing EWSEditor 1.5!

    Over the past year I’ve been working with the new Exchange Web Services Managed API and I have to say, it’s a wonderful thing – especially compared to working with the Visual Studio generated proxy classes for Exchange Web Services.  While working with Exchange Web Services (EWS) early in the Exchange 2007 release it became apparent to me that an editor tool in the spirit of MFCMAPI built on top of EWS might be useful.  At the time I started working on such an editor and based it off the
    Posted to mstehle: The CDOs and CDONTS of Messaging Development (Weblog) by mstehle on November 9, 2009
    Filed under: Exchange Web Services, DevMsgTeam, Exchange Web Services Managed API, EWSEditor
  • How to get Extended MAPI Properties in the GetItem Exchange Web Service call?

    We can get/set Extended MAPI Properties using Exchange Web Services for Exchange Server 2007/2010. Here is sample code snippet to get value for CleanGlobalObjectID via GetItem call of Exchange Web Services: NOTE: Following programming examples is for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This sample code assumes that you are familiar with the programming language
    Posted to Brijs Blogging... Looking Beyond the Obvious (Weblog) by brijs on November 6, 2009
    Filed under: DevMsgTeam, How to, C#, .Net, Exchange Server 2007, Exchange Web Services, Visual Studio 2008, Exchange Server 2010
  • FYI: New Version of Exchange Remote Connectivity Analyzer Released (ExRCA) with new Exchange Web Service Tests!

    From the Exchange Team blog : “Today we released an updated version of the Exchange Remote Connectivity Analyzer . For those of you not familiar with this site, it is a Web-based tool that helps you troubleshoot connectivity issues. The tool simulates several client logon and mail flow scenarios. When a test fails, many of the errors have troubleshooting tips to assist you in correcting the problem. For more information, see our previous blog post here . … Additional tests Exchange Web Services -
    Posted to mstehle: The CDOs and CDONTS of Messaging Development (Weblog) by mstehle on October 20, 2009
    Filed under: FYI, Exchange Web Services, DevMsgTeam
  • Exchange Web Services and Exchange 2010 - What’s new Webcasts

    Exchange 2010 is on it way and along with it Exchange Web Services Managed API would be one-in-all interface for developing custom applications. So, If you are developing Exchange related application and interested to know what you can do with the new EWS Managed API and what’s new in Exchange 2010 for developers then, Here are few interesting web casts to learn more:  10/13/2009 - Exchange Server 2010 Development (Part 1 of 6): Migrating Applications to Exchange Web Services 10/14/2009 - Exchange
    Posted to Brijs Blogging... Looking Beyond the Obvious (Weblog) by brijs on October 8, 2009
    Filed under: DevMsgTeam, Exchange Web Services, Exchange Web Services Managed API, Exchange Server 2010, FYI, WebCast, Learn
  • EWS: Exchange 2007 RTM vs. SP1 Specifying MeetingTimeZone's TimeZoneName when creating an Appointment

    Prior to Exchange 2007 SP1 an article was published with some specific guidance related to handling time zones in calendar item tasks.  Contrary to Best Practices for Using Exchange Web Services for Calendaring Tasks , specifying just a MeetingTimeZone TimeZoneName when creating a CalendarItem appears to work in Exchange 2007 SP1 and later.  The best practices says not to submit the TimeZoneName in MeetingTimeZone because it will be ignored, though there is a hint that this might not apply
    Posted to mstehle: The CDOs and CDONTS of Messaging Development (Weblog) by mstehle on September 4, 2009
    Filed under: Exchange Web Services, DevMsgTeam, Exchange Web Services Managed API
  • EWS: UID not always the same for orphaned instances of the same meeting.

    Earlier I linked to a post by Henning Krauses which discusses searching for a meeting using the UID and GlobalObjectId properties. The point of UID is to provide a unique identifier for a meeting across the calendars each attendee to the same meeting. Henning gave some expert advise for using GlobalObjectId instead of UID in a FindItem request to locate instances of a recurring meeting in different user’s calendars. As noted in his article, in Exchange 2007 pre-SP2 the UID property is built from
    Posted to mstehle: The CDOs and CDONTS of Messaging Development (Weblog) by mstehle on September 2, 2009
    Filed under: Exchange Web Services, DevMsgTeam, Exchange Web Services Managed API
  • How to create a Service Account with full access to all mailboxes on Exchange Server 2007 mailboxstore?

    We can use following Exchange PowerShell cmdlet to grant a Service Account full access to all the mailboxes on Exchange Server 2007 mailboxstore, but do so only in accordance with your organization's security and privacy policies: Get -mailboxserver <servername> | add-adpermission –user <service account> -accessrights GenericRead, GenericWrite -extendedrights Send- As , Receive- As , ms-Exch-Store-Admin .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas,
    Posted to Brijs Blogging... Looking Beyond the Obvious (Weblog) by brijs on September 1, 2009
    Filed under: DevMsgTeam, How to, Exchange Server 2007, Exchange Web Services, Exchange Web Services Managed API, PowerShell
1 2 3 4 5 Next > ... Last »

© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Microsoft
Page view tracker