I am using EWS through PHP to connect to a calendar on an exchange server and retrieve a certain set of CalendarItems. But the CalendarItems I receive do not have any field containing the body text of the calendar event.
Anyone have any idea how I would get the body text? (Using php-ews)
...
These days I am investigating whether we can access the archived content present in Exchange 2010 using Web Services or server side API.
I need to build a connector against Exchange 2010 and retrieve all the content withing Exchnage 2010. Is this possible?
I have seen the below blog, which says that there is no EWS API to access the ar...
I have created a calendar item using EWS, which contained a plain-text body.
When I view this calendar item in Outlook 2007, nothing appears in the body, but when I view it using OWA (The web interface), I can see the body.
Anyone have any idea why this is?
...
Is there a working example anywhere of how to create a meeting request using EWS for Exchange 2007 using C#? Which properties are required? I have added a web service reference and can connect to create and send various items but keep getting the error "Set action is invalid for property." on the response messages. It never says what p...
I want to write a windows service that periodically synchronises a database with the contacts in an exchange 2007 server instance.
Is this possible with Exchange Web Services or can I do this with powershell?
If I go the EWB route, does this means that I need the client to set up the Web Service end point and make it pubilc?
The cli...
Is it possibly to access the folders and items of other Exchange accounts other than the one of the logged in user?
Can I do this via Exchange Web Services Managed API?
...
I want to integrate check names option to my web site via web service, which I have connection using web reference to our exchange server (ews services dll)...
...
I'm new to using EWS and I'm looking for a simple example that demonstrates how to send an email with an attachment. I've searched for an example and I can't find any that are simple and clear-cut. I've found examples about how to send an email but not sending an email with an attachment.
Does anyone have a link to an example they wou...
How to know Exchange WebService URL, I have Exchange server version 2007 and I am trying to write a small C# console application to collect some data from exchange server but don't know what is the Exchange.WebServices Url. AutodiscoverUrl failed.
...
I have an synchronization application with sync appointments with Exchange 2010, and i have some questions.
UserA creates an appointment and add UserB as attendee, this means UserA is the organizer of the appointment and UserB outlook calendar will have an appointment entry created.
UserA and UserB calendar appointment will have their ...
I'm writing an app to process email attachments, using Exchange Web Services.
The general structure of my problem area is as follows:
public static void Main()
{
FindItemsResults<Item> findResults = FindItems();
foreach (Item item in findResults)
{
DoSomethingWithItem(item);
}
}
public static FindItemsResults<...
Hi,
I'm able to find/determine the attachment is there or not in a mail using Exchange Web Service Binding using GetItem() method.
But using GetItem() method leads to costlier operation in terms of performance and not recommended in our project requirement.
I would require information that by passing ItemID alone without GetItem() met...
I'm trying to get a list of all the appointments assigned to a resource. Resource accounts can't be logged into, so I can't impersonate the accounts.
I can set up an admin account with delegate access to the resource accounts. I've done this successfully, but it isn't allowing me to retrieve the appointments.
How can I query all the ...
The EWS API does not allow you to create a Distribution list if you are using Exchange 2007. Creating a ContactGroup is only supported in Exchange 2010.
How do you create a distribution list using C# in an Exchange Public Folder?
...
I am trying to access a mailbox and I already gave permissions to the user as can be seen in the next image.
1-> is the email I want to check
2-> is the user that has permissions
and when I run this code to get the inbox emails
ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2007_SP1);
service.Credentials = n...
Currently a piece of our application creates and saves new mail messages to a user's drafts folder using Exchange Web Services. We would like to automatically append the user's default signature to these messages when creating them, but I have not been able to find a way to access the signature to append it to the body. The email messa...
Just to be clear before continuing: using PHP's built-in SOAP class is unfortunately not an option here (production server's PHP is not built with it, and won't be).
I'm trying to use EWS to allow me to authenticate users for a completely external server application. LDAP authentication has been disallowed. I have verified my EWS wsdl...
i try to create task for another users Task class needs Contasct with StringList format. How can i do that. i think that i do what i need to make it? Look please
StringList list = new StringList();
foreach (string item in obj.RecipientsList)
{
list.Add(item);
}
public class MyOu...
Hi,
I need to import all the users from global address book. ResolveNames (http://msdn.microsoft.com/en-us/library/aa563518(v=EXCHG.80).aspx) can only find some, according to search string.
Thank you.
...
I use Exchange Server Managed API. How do I find out if an appointment is private?
There doesn't seem to be a method or property in the "Appointment" class.
...