Hi,
After reading the Microsoft MPNS, below is the example of using Asp.net to send PushNotification :
HttpWebRequest sendNotificationRequest = (HttpWebRequest)WebRequest.Create(subscriptionUri);
sendNotificationRequest.Method = "POST";
Where subscriptionUri is for connecting to Microsoft MPNS.
I want to know the following for NAV Web service:
1) How to trigger WebService when an event is occurring such as completing a Purchase order ?
Example: when user completes a purchase order it trigger an event which will invoke to a web service
Thanks