Reputation: 136
I want my Exchange mail server to give notifications of incoming mails to the mobile device running the mail application.
Does EWS API provide any method to implement it? Could anyone please help me to understand how shall I start?
Upvotes: 3
Views: 6290
Reputation: 21
The push notification sample application contains two components. The first component is the client Web service that listens for and retrieves notification events. This component also provides responses to notify the Client Access server as to whether the subscription should be maintained. The second component initiates the subscription with the Client Access server. It identifies the client Web service endpoint and other information that is required to configure the subscription.
The following prerequisites are needed to build and use the Push Notification Sample Application:
The types.xsd
and messages.xsd
schema files that are found in the EWS virtual directory of the computer that is running Exchange 2010.
To build the push notification client Web services application**
Samples\PushNotification\PushNotificationClient\
folder, and double-click the PushNotificationClient.sln
file.To set up and build the subscriber application
Navigate to the directory in which the Exchange 2010 Web Services SDK is installed, open the Samples\PushNotification\PushNotificationSubscriber\
folder, and double-click the PushNotificationSubscriber.csproj
file.
Update the ExchangeServiceBindingUrl
property to identify the location of the Exchange Web service.
Update the ExchangeServiceBindingCredentials
property to identify the name, password, and domain of the user whose mailbox will be monitored for events.
Update the PushSubscriptionRequestTypeURL
property to identify the location of the client Web service that will receive the event notifications. This URL is defined by the location of the client Web service.
From the Build menu, select Build Solution.
Upvotes: 3
Reputation: 11
You can take help from these threads : http://www.codeproject.com/Articles/73834/EWS-Mail-Notifier#/KB/exchange/ewsconsolenotify.aspx#_comments
http://www.codeproject.com/Articles/21164/Exchange-2007-Push-Notifications-Using-WCF
A Complete process is given in the above two threads describing how to set up push notifications for MS Exchange server
Upvotes: 1