Worklight 6.2 - Broadcast notification not being sent

非 Y 不嫁゛ 提交于 2019-12-11 16:18:20

问题


We are trying to run the sample app for push notifications with some modification to get it to send out a broadcast notification, but it is not getting sent.

We have modified the PushBackendEmulator code as well. The emulator invokes the submitBroadCastNotification procedure successfully and the following result is returned:

Server response :: /-secure-{"result":"Notification sent to all users","isSuccessful":true}/

However, it appears the WL.Server.sendMessage method is not sending the message and returns. I am not able to see the server side logs either after a thorough search on the liberty server except for the messages.log on the liberty server which shows the following when WL.Server.sendMessage is called.

ht.integration.js.JavaScriptIntegrationLibraryImplementation E FWLSE0227E: Failed to send notification. Reason: FPWSE0009E: Internal server error. No devices found [project worklight]

Here is the adapter code:

function submitBroadcastNotification( notificationText) {

    var notification = {};
    notification.message = {};
    notification.message.alert = notificationText;

    //notification.target = {};
    //notification.target.tagNames = ['test'];


    WL.Logger.debug("broadcast: " + notification.message.alert );

    var delayTimeOut = **WL.Server.sendMessage**("PushNotificationsApp", notification);
    WL.Logger.debug("Return value from WL.Server.sendMessage :"+ delayTimeOut);

    return {
    result : "Notification sent to all users"
    };
}

Here is the PushBackendEmulator code:

public static void main(String [] args){
        String serverUrl =
                "http://208.124.245.78:9080/worklight";

        String notificationText = "Hellofrombroadcastingnotifications";
        String userId = "admin";

        notificationText = notificationText.replace(" ", "%20");
        Logger.debug("sending broadcast notification: " + notificationText);

        URL url = new URL(serverUrl
                + "/invoke?

    adapter=PushAdapter&procedure=submitBroadcastNotification&parameters=['" + userId + "','" + notificationText + "']");
    HttpURLConnection connection = (HttpURLConnection) url.openConnection();
    connection.setRequestMethod("GET");
    connection.setReadTimeout(10000);
    connection.setDoOutput(true);
        Logger.debug("Connected to server");
        BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));

        String response = "";
        String inputLine;

        while ((inputLine = in.readLine()) != null)
            response+= inputLine;
        Logger.debug("response is:"+ response);
        in.close();

        Logger.debug("Server response :: " + response);

        connection.disconnect();

回答1:


Looking at your application from the PMR, it seems to me like you have mixed both event source-based notifications and broadcast notifications.

If you want to use Broadcast notifications, this means you cannot try imposing sending the notification to any specific userId, etc as it is not needed nor based on userIds.

By default, all devices are auto-subscribed to a tag called "push.ALL".
You can read more about broadcast notifications API methods in the IBM Worklight Knowledge Center.

This is a modified version of your application, tested in iOS and Android: https://www.dropbox.com/s/l2yk2pbvykrzfoh/broadcastNotificationsTest.zip?dl=0

Basically, I stripped away from it anything not related to broadcast notifications:

  • I removed the push securitytest from application-descriptor.xml
  • I removed any function from the adapter XML and JS files and main.js file that is related to event source-based notifications.

The end result is that after the app is loaded, you are right inside the application (no login).
I then right-clicked the adapter folder in Studio > invoke procedure, and selected the submitBroadcastNotification option to send the notification ("aaa").

In the device, a notification was received. Tapping it (if the app is closed) launches the application, which then triggers the WL.Client.Push.onMessage API in common\js\main.js to display alerts containing the payload and props of the received notification.

This was tested in both iOS and Android.
As the application was loading, I could see in LogCat and Xcode console the token registration.

  • To test this in iOS, you will need to update application-descriptor.xml with your own pushSender password and add your own apns-certificatae-sandbox.p12 file.

  • To test in Android, make sure you are have generated a browser key in the GCM console and are using it in application-descriptor.xml

  • For both, make sure that all requires ports and addresses and accessible in your network



来源:https://stackoverflow.com/questions/27372147/worklight-6-2-broadcast-notification-not-being-sent

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!