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.2k Views Asked by Idiemus At
1
There are 1 best solutions below
Related Questions in CROSS-PLATFORM
- How to tell the difference between linux and mac
- Possible to ignore certain submodules on Git checkout?
- Swipe between webviews in Xamarin
- How to invoke an Integration Service in Kony Studio that is created in the MobileFabric Console?
- Kony: Ant build error=exec-shell returned: 1
- Best practice for cross-platform mono project layout when using native dll's
- Equivalents to gcc/clang's march=native in other compilers?
- Platform specific cut paste mnemonics swing.
- Are there any naming conventions for command line arguments?
- Why is NetBeans running my program on OS X, but not building it into a JAR?
- How to Upgrade Cordova 3.5.0-0.2.4 to any higher version?
- Meteor.js - How to implement different templates on a cross-platform app
- Rcpp: Platform differences in output
- Cross-Platform Vector Format
- How to manage separate GUI processes in a Qt application?
Related Questions in INTEL-XDK
- How do i send a SMS using phonegap without opening the native app?
- Layout displacment on iOS 8.3
- Video is not playing in intel xdk
- How to switch through pages using Intel XDK
- Unable to use cordova plugin from github in Intel XDK
- Intel XDK AJAX Call with cordova 4.1.2 not working
- Different performance with Intel XDK
- XDK built app not working
- Sound not working on cocos2D JS v.3 + IntelXDK + Cordova
- Redirect to other page Intel XDK
- Error: GTK library is not installed or installed version is not compatible
- Text from HTML input field run through jquery function?
- Protect my Android (Intel XDK) app from piracy
- Ionic infinite scroll dont stop
- navigator.app.exitApp() not working
Related Questions in INSTANT-MESSAGING
- UCWA: integrating advanced chat options
- Can I get all possible instant messaging apps for a specific contact?
- Is this correct way of including Quickblox SDK into to my existing android project?
- Android smack.util.StringUtil does not have parseBareAddress
- Create a link that will open Viber and WhatsApp and will send a message to me
- How to implement Instant Messaging in android using socket.io?
- User Data (object) Isolation on Instant Messaging
- Quickblox messaging fetch last n messages
- instant messaging with intel xdk receiving notification on new message
- transfer chat conversation on Openfire and anonymous login
- Android: How to incorporate Rich communication Services in Application
- Refreshing Database VB.NET
- Storing and managing Messages in ios
- navigate between conversations and see previous messages
- redis- Should I use redis to store chat messages?
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)
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?
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: