NULL
NULL

Reputation: 1589

services wsdl exchange web services

Where do I get exchange services.wsdl? I have googled around and I am not able to find anything to download. I am trying to develop an application to insert data into outlook on exchange server. I currently i have it done to work on a localhost/desktop, and i am trying to change my code to use webservices.

using Microsoft.Office.Interop.Outlook;
    using OutLook = Microsoft.Office.Interop.Outlook;
    Microsoft.Office.Interop.Outlook.MAPIFolder CustomFolder = null;
    OutLook._Application outlookObj = new OutLook.Application();
    OutLook.MAPIFolder fldContacts = (OutLook.MAPIFolder)outlookObj.Session.GetDefaultFolder(OutLook.OlDefaultFolders.olFolderContacts);
    CustomFolder = contactsFolder.Folders.Add("MyNewAddressBook", Microsoft.Office.Interop.Outlook.OlDefaultFolders.olFolderContacts);

So I am trying to change the above by using exchange, however, i am not sure where to get the reference! do I need to inquire from my network admin?

Upvotes: 1

Views: 1021

Answers (1)

Matthew Steeples
Matthew Steeples

Reputation: 8088

If you're using C# / .NET then your best bet is going to be to use Exchange Web Services. This question has a way to get started on EWS.

Upvotes: 1

Related Questions