Event Source Notifications in Native Windows Phone 8 Applications

improve this page | report issue

Overview

Prerequisite: Make sure that you read the Push notifications in native Windows Phone 8 applications tutorial first.

Event source notifications are notification messages that are targeted to devices with a user subscription.
While the user subscription exists, MobileFirst Server can produce push notifications for the subscribed user. These notifications can be delivered by the adapter code to all or some of the devices from which the user subscribed.

To learn more about the architecture and terminology of event-source push notifications refer to the Push notification overview tutorial.

Implementation of the push notification API consists of the following main steps:

On the server side:

  • Creating an event source
  • Sending notification

On the client side:

  • Sending the token and initializing the WLPush class
  • Registering the event source
  • Subscribing to/unsubscribing from the event source

Agenda

Notification API - Server-side

Creating an event source

To create an event source, you declare a notification event source in the adapter JavaScript code at a global level (outside any JavaScript function):

WL.Server.createEventSource({
    name: 'PushEventSource',
    onDeviceSubscribe: 'deviceSubscribeFunc',
    onDeviceUnsubscribe: 'deviceUnsubscribeFunc',
    securityTest:'PushApplication-strong-mobile-securityTest'
});

  • name – a name by which the event source is referenced.
  • onDeviceSubscribe – an adapter function that is invoked when the user subscription request is received.
  • onDeviceUnsubscribe – an adapter function that is invoked when the user unsubscription request is received.
  • securityTest – a security test from the authenticationConfig.xml file, which is used to protect the event source.

An additional event source option:

poll: {
    interval: 3,
    onPoll: 'getNotificationsFromBackend'
}

  • poll – a method that is used for notification retrieval.
    The following parameters are required:

    • interval – the polling interval in seconds.
    • onPoll – the polling implementation. An adapter function to be invoked at specified intervals.


Sending a notification

As described previously, notifications can be either polled from the back-end system or pushed by one. In this example, a submitNotifications() adapter function is invoked by a back-end system as an external API to send notifications.

function submitNotification(userId, notificationText) {
    var userSubscription = WL.Server.getUserNotificationSubscription('PushAdapter.PushEventSource', userId);<
    if (userSubscription === null) {
        return { result: "No subscription found for user :: " + userId };
    }
    var notification={};
    notification.MPNS={};
    var badgeDigit = 1;
    notification = WL.Server.createDefaultNotification(notificationText, badgeDigit, {custom:"data"});
    //Set Toast notification for MPNS
    notification.MPNS.toast={};
    notification.MPNS.toast.text1 = "Toast title";<
    notification.MPNS.toast.text2 = "Toast content";
    WL.Server.notifyAllDevices(userSubscription, notification);
    return {
        result: "Notification sent to user :: " + userId
    };
}

The submitNotification function receives the userId to send notification to and the notificationText.

function submitNotification(userId, notificationText) {

A user subscription object contains the information about all of the user’s subscriptions. Each user subscription can have several device subscriptions. The object structure is as follows:

{
    userId: 'bjones',
    state: {
        customField: 3
    },
    getDeviceSubscriptions: function()[}
};

Next line:

var userSubscription = WL.Server.getUserNotificationSubscription('PushAdapter.PushEventSource', userId);

If the user has no subscriptions for the specified event source, a null object is returned.

if (userSubscription === null) {
        return { result: "No subscription found for user :: " + userId };
    }

The WL.Server.createDefaultNotification API method creates and returns a default notification JSON block for the supplied values.

var badgeDigit = 1;
var notification = WL.Server.createDefaultNotification(notificationText, badgeDigit, {custom:"data"});

  • notificationText - The text to be pushed to the device.
  • Badge (number) - A number that is displayed on the application icon or tile (in environments that support it).
  • custom - Custom, or Payload, is a JSON object that is transferred to the application and that can contain custom properties.

In case of Windows Phone 8 , there are 3 type of MPNS notifications – Raw, Toast and Tile. Raw notifications are visible when the application is in foreground. Toast and Tile notifications are for cases where the application is in background or not running. To see Tile notifications , pin the application to the start screen.

The default notification JSON block returned by WL.Server.createDefaultNotification API method contains notification JSON for Raw and Tile. To send Toast notifications, add the JSON block for Toast notifications:

notification.MPNS.toast={};
notification.MPNS.toast.text1 = "Toast title";
notification.MPNS.toast.text2 = "Toast content";

For more details refer to user documentation on WL.Server.createDefaultNotification API

The WL.Server.notifyAllDevices API method sends notification to all the devices that are subscribed to the user.

WL.Server.notifyAllDevices(userSubscription, notification);


Several APIs exist for sending notifications:

  • WL.Server.notifyAllDevices(userSubscription, options) - to send notification to all user’s devices.
  • WL.Server.notifyDevice(userSubscription, device, options) - to send notification to a specific device that belongs to a specific user subscription.
  • WL.Server.notifyDeviceSubscription(deviceSubscription, options) - to send the notification to a specific device.

Notification API - Client-side

  1. Create an instance of the WLClient class.

    WLClient client = WLClient.getInstance();

  2. Use the methods of the WLPush class.

    getPush - This method retrieves an instance of the WLPush class from the WLClient instance.

    WLPush push = client.getPush();

    onReadyToSubscribeListener - When connecting to a MobileFirst Server instance, the application attempts to register itself with the MPNS server to receive push notifications.

    push.onReadyToSubscribeListener = onReadyListener;
    client.connect(connectListener);

    notificationListener - Then the app receives the notification.

    push.notificationListener = notificationListener;
    client.connect(connectListener);

    The onReadyToSubscribe method of WLOnReadyToSubscribeListener is called when registration is complete.

    public void onReadyToSubscribe() { ... }

  3. To register an alias on a particular event source, use the WLPush.registerEventSourceCallback method. The API takes the following arguments:

    alias - An alias name.
    Adaptername - The adapter in which the event source is defined.
    EventSourceName - The event source on which the alias is called.

    Example:

    WLClient.getInstance().getPush().registerEventSourceCallback("newalias", "PushAdapter", "PushEventSource", this);

    Typically, this method is called in the onReadyToSubscribe callback function.

    public void onReadyToSubscribe() {
        WLClient.getInstance().getPush().registerEventSourceCallback("newalias","PushAdapter","PushEventSource",this);
    }


Subscribing to push notifications

To set up subscription to push notifications, use the WLPush.subscribe(alias, pushOptions, responseListener) API.

The API takes the following arguments:

    alias - The alias to which the device must subscribe.
    pushOptions - An object of type WLPushOptions
    responseListener - An object of type WLResponseListener, which is called when subscription completes.

Example:

WLClient client = WLClient.getInstance(); client.getPush().subscribe("newalias",new WLPushOptions(), new MyListener());

MyListener implements WLResponseListener and provides the following callback functions:

    onSuccess - Called when subscription succeeds.
    onFailure - Called when subscription fails.

Unsubscribing from push notifications

To set up unsubscription from push notifications, use the WLPush.unsubscribe(alias, responseListener) API.
The API takes the following arguments:

    alias - The alias to which the device has subscribed.
    responseListener - An object of type WLResponseListener, which is called when unsubscription completes.

WLClient client = WLClient.getInstance(); client.getPush().unsubscribe("newalias",new MyListener());

MyListener implements WLResponseListener and provides the following callback functions:

    onSuccess - Called when unsubscription succeeds.
    onFailure - Called when unsubscription fails.

Additional client-side API methods:

isSubscribed() - Indicates whether the device is subscribed to push notifications.

WLClient client = WLClient.getInstance(); boolean bIsSubscribed = client.getPush().isSubscribed("newalias");


Receiving a push notification

When a push notification is received, the onReceive method is called on an WLEventSourceListener instance.

class MyListener : WLOnReadyToSubscribeListener , WLEventSourceListener
{

The WLEventSourceListener instance is registered during the registerEventSourceCallback callback.

WLClient.getInstance().getPush().registerEventSourceCallback("newalias", "PushAdapter","PushEventSource", this );

The onReceive method displays the received notification on the screen.

public void onReceive(String props, String payload) {
   Deployment.Current.Dispatcher.BeginInvoke(() =>
   {
       MessageBox.Show("Push notification received " + payload);
   });
}

If the application is not running, the notification icon appears on the notification bar at the top of the screen.

Sample application

Click to download the MobileFirst project.

Click to download the Native project.

  • The EventSourceNotifications project contains a MobileFirst native API that you can deploy to your MobileFirst server.
  • The EventSourceNotificationsWP8 project contains a native Windows Phone 8 application that uses a MobileFirst native API library to subscribe for push notifications and receive notifications from MPNS.
  • Make sure to update the wlclient.properties file in the native project with the relevant server settings.

missing_alt

Sending a notification

To test the application is able to receive a push notification you can perform one of the following:

  1. Right-click the adapter in MobileFirst Studio and select Call MobileFirst Adapter
  2. If using the CLI, for example:
    $ mfp adapter call
    [?] Which endpoint do you want to use? PushAdapter/submitNotification
    [?] Enter the comma-separated parameters: "the-user-name", "hello!"
    [?] How should the procedure be called? GET
Inclusive terminology note: The Mobile First Platform team is making changes to support the IBM® initiative to replace racially biased and other discriminatory language in our code and content with more inclusive language. While IBM values the use of inclusive language, terms that are outside of IBM's direct influence are sometimes required for the sake of maintaining user understanding. As other industry leaders join IBM in embracing the use of inclusive language, IBM will continue to update the documentation to reflect those changes.
Last modified on November 09, 2016