i would like to create instant messaging in cross platform. how can i get the application keep listening to the server so when there is a message coming, the application could receive a notification. maybe like service in android? I've read about push message (push mobi) but it doesn't seem to meet my need since it blast the notification on all registered id from admin panel, not from 1 id to another id. i notice GCM but some say it is not suitable for sending and receiving chat.
instant messaging with intel xdk receiving notification on new message
1.1k views Asked by Idiemus At
1
There are 1 answers
Related Questions in CROSS-PLATFORM
- Rails 5.1: Passing in array to where query does not search across multiple values
- Configuration details for Rails API-only app with one or two full routes
- How to add a new resource type to Rails scaffolding generator?
- Rails 5.1 - ActiveRecord::RecordNotUnique.new wrong number of arguments
- How can I require a Yarn package in the Rails assets?
- bpmn-js with Rails 5.1 webpacker Cannot resolve module 'fs'
- Rails-ERD, Graphviz error. Other answers not working. "Saving diagram failed! Verify that Graphviz is installed and in your path, or use filetype=dot"
- syntax error ruby rspec testing
- The asset "logo.png" is not present in the asset pipeline
- Get 'Zone already loaded' error in Rails + webpack + angular 2 initial setup
Related Questions in INTEL-XDK
- Rails 5.1: Passing in array to where query does not search across multiple values
- Configuration details for Rails API-only app with one or two full routes
- How to add a new resource type to Rails scaffolding generator?
- Rails 5.1 - ActiveRecord::RecordNotUnique.new wrong number of arguments
- How can I require a Yarn package in the Rails assets?
- bpmn-js with Rails 5.1 webpacker Cannot resolve module 'fs'
- Rails-ERD, Graphviz error. Other answers not working. "Saving diagram failed! Verify that Graphviz is installed and in your path, or use filetype=dot"
- syntax error ruby rspec testing
- The asset "logo.png" is not present in the asset pipeline
- Get 'Zone already loaded' error in Rails + webpack + angular 2 initial setup
Related Questions in INSTANT-MESSAGING
- Rails 5.1: Passing in array to where query does not search across multiple values
- Configuration details for Rails API-only app with one or two full routes
- How to add a new resource type to Rails scaffolding generator?
- Rails 5.1 - ActiveRecord::RecordNotUnique.new wrong number of arguments
- How can I require a Yarn package in the Rails assets?
- bpmn-js with Rails 5.1 webpacker Cannot resolve module 'fs'
- Rails-ERD, Graphviz error. Other answers not working. "Saving diagram failed! Verify that Graphviz is installed and in your path, or use filetype=dot"
- syntax error ruby rspec testing
- The asset "logo.png" is not present in the asset pipeline
- Get 'Zone already loaded' error in Rails + webpack + angular 2 initial setup
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Sounds like a good scenario for websockets. There's a phongap plugin for android that will allow you to use them.
Take a look at the plugin demo. It looks pretty strait-forward.
client side javascript:
Server side web service in node.js: