Vote count:
0
Im trying to pass a decent sized object to my custom receiver app but it never seems to make it through. If I take a smaller object and do JSON.stringify it then it seems to work. But regardless of if i stringify or not the parent object and sending never works.
sender app
session.sendMessage(namespace, message, onSuccess.bind(this, "Message sent: " + message), onError);
receiver app
window.messageBus.onMessage = function(event) {
console.log('Message [' + event.senderId + ']: ' + event.data);
}
asked 48 secs ago
Is there a size limit on objects being sent to a custom receiver app?
Aucun commentaire:
Enregistrer un commentaire