|
|
Browse by Tags
All Tags » DevMsgTeam » ExchangeServiceBinding (RSS)
Showing page 1 of 3 (21 total posts)
-
Earlier i got a chance to play around creating recurring tasks. I followed the article from MSDN and it worked like charm for me. public TaskType CreateRecurringTask() { // Create the task item and set property values. TaskType task = new TaskType(); task.Subject = "Recurring Task" ; task.Body = new BodyType(); task.Body.BodyType1 = BodyTypeType.Text; task.Body.Value = "Occurs every week" ; task.StartDate = DateTime.Now; task.StartDateSpecified = true ; // Create the regeneration
Posted to Le Café Central de DeVa (Weblog) by deva on December 8, 2009
Filed under: Exchange Web Services (EWS), Exchange Server 2007, task, DevMSGTeam, development, Exchange 14, ExchangeServiceBinding, Exchange Server 2010, TaskItem, CreateItem, Exchange Programming, Exchange
-
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 start with Inside Exchange Web Services book from MSPRESS and then the rest of the articles can be utilized. MSPRESS BOOK Inside Microsoft Exchange Web Services http://www.microsoft.com/learning/en/us/books/10724.aspx
Posted to Jive into Messaging world (Weblog) by Vikas Verma on June 20, 2009
Filed under: Exchange, Exchange 2007, Search Folder, Exchange Web Services, Samples, DevMsgTeam, Push Notification, Pull Notification, GetItem, ExchangeServiceBinding, GetAttachment, HasAttachment, UpdateItem, SetUserOofSettingsRequest, ExchangeImpersonation, FindFolder, CoolStuff, Announcements, SearchFolderType, EWS Managed API, FindItem
-
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. Challenges: You might ask me why not use GetUserOofSettings to query user’s OOF status with the help of Exchange Impersonation? This is due to the limitation of EWS’s GetUserOofSettings/SetUserOofSettings
Posted to Jive into Messaging world (Weblog) by Vikas Verma on May 29, 2009
Filed under: Messaging, Exchange 2007, HOWTO, Exchange Web Services, Samples, Workarounds, DevMsgTeam, GetItem, ExchangeServiceBinding, SetUserOofSettingsRequest, ExchangeImpersonation, CoolStuff, Restrictions, FindItem
-
One of my customer updated that whenever they try to make the remote Exchange Web Service (EWS) call from his C#.Net 2008 application (VS.Net 2008 - .Net Framework 3.x), he gets the following error: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel I had a detailed look at their application code. // Create the Exchange Service Binding ExchangeServiceBinding esb = new ExchangeServiceBinding(); // Add its relevant Credentials like user
Posted to Le Café Central de DeVa (Weblog) by deva on May 23, 2009
Filed under: Exchange Web Services (EWS), Exchange Server 2007, Best Practices, certificate authorities, Secure Sockets Layer(SSL), TLS, Errors, Troubleshooting, DevMSGTeam, Programming, Security, SSL, HTTP, CredentialCache, credentials, proxy, EWS, ExchangeServiceBinding, x509, EWS Troubleshooting
-
In this we will see how to create & send e-mail messages using Exchange Web Service (EWS). It’s pretty simple with EWS to do. // Create the Exchange Service Binding ExchangeServiceBinding esb = new ExchangeServiceBinding(); // Add its relevant Credentials like user name, password, domain and URL esb.Credentials = new NetworkCredential(userName, Password, domain); esb.Url = @"https://myexchangeserver/EWS/Exchange.asmx" ; // CreateItemType and set its relevant properties/values CreateItemType request
Posted to Le Café Central de DeVa (Weblog) by deva on May 22, 2009
Filed under: Exchange Web Services (EWS), Exchange Server 2007, DevMSGTeam, Programming, development, C#, SMTP, CredentialCache, e-mail, credentials, EWS, ExchangeServiceBinding
-
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 <? xml version ="1.0" ? > < CreateFolderType xmlns:xsi ="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd ="http://www.w3.org/2001/XMLSchema" > < ParentFolderId
Posted to Jive into Messaging world (Weblog) by Vikas Verma on April 9, 2009
Filed under: Exchange, Exchange 2007, Search Folder, HOWTO, Exchange Web Services, Samples, DevMsgTeam, ExchangeServiceBinding, CreateFolderType, SearchFolderType
-
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() { //Base folder type FolderIdType folderID = new FolderIdType(); //create the request that will create a new searchfolder under the finder directory CreateFolderType folderType = new CreateFolderType();
Posted to Jive into Messaging world (Weblog) by Vikas Verma on April 9, 2009
Filed under: Exchange, Exchange 2007, Search Folder, HOWTO, Exchange Web Services, Samples, DevMsgTeam, ExchangeServiceBinding, CreateFolderType, SearchFolderType
-
Hi Peers, I have include the part 1 of Exchange Web Services & VB.Net. Earlier my couple of VB developer customers were looking for relevant VB.Net related articles and found very few. Keeping in that mind, i have created this EWS_VB.net_Calendar thread to start with. In this session we will going to see how we can create the Calendar using Exchange Web Services (EWS). I tried to provide things as simpler as i can… I would appreciate to know if you have any suggestions/clarifications regarding
Posted to Le Café Central de DeVa (Weblog) by deva on February 24, 2009
Filed under: Exchange Web Services (EWS), Exchange Server 2007, Calendar, DevMSGTeam, development, CredentialCache, credentials, FQDN, EWS, EWS_VB.Net_Calendar, VB.Net, ExchangeServiceBinding
-
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 sender where the subject has some specific words. Yeah a rule could do that but I want to search in multiple folders and keep the individual mails in their individual folders. Complex? not really! Search
Posted to Jive into Messaging world (Weblog) by Vikas Verma on February 24, 2009
Filed under: Exchange, Messaging, Exchange 2007, Search Folder, HOWTO, Exchange Web Services, DevMsgTeam, ExchangeServiceBinding, ExchangeImpersonation, FindFolder, Restrictions
-
'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") oses.logon "", "", false, true, 0, true, ssrv & vblf & smbx set omsg=oses.inbox.messages.getfirst sfrom=omsg.fields.item(myXheader,myCdoInetPset).value wscript.echo sfrom omsg.fields.add myXheader,
Posted to Dan's WebDAV 101 (Weblog) by danba on January 14, 2009
Filed under: Exchange 2007, EWS, xml, http, exchange web services, DevMsgTeam, post, ExchangeServiceBinding
1
|
|
|