i am implementing group chat on XMPP ejabberd server so what is the best option? Pubsub or MUC? MUC has only persistent groups which means as soon as the user goes offline the user leaves the group. Or instead i can implement using pubsub which does not have the functionality like presence and other things, so i would have to build them myself. so whats my best option?
what is the best way to implement group chat in XMPP ejabberd server pubsub or MUC to make group chats like whatsapp
904 Views Asked by user5341235 At
1
There are 1 best solutions below
Related Questions in ANDROID
- Delay in loading Html Page(WebView) from assets folder in real android device
- MPAndroidChart method setWordWrapEnabled() not found
- Designing a 'new post' android activity
- Android :EditText inside ListView always update first item in the listview
- Android: Transferring Data via ContentIntent
- Wrong xml being inflated android
- AsyncTask Class
- Unable to receive extras in Android Intent
- Website zoomed out on Android default browser
- Square FloatingActionButton with Android Design Library
- Google Maps API Re-size
- Push toolbar content below statusbar
- Android FragmentPagerAdapter Circular listview
- Layout not shifting up when keyboard is open
- auDIO_OUTPUT_FLAG_FAST denied by client can't connect to localhost
Related Questions in XMPP
- sendxmpp not authorized failure (Error AuthSend)
- C# agsxmpp Domain vs connectionserver
- Android Smack4.1.1 XMPP FileTransfer Issue with Iphone
- How to login with recently registered user to openfire in ios?
- Server less Group Messaging (chating) Xmpp
- SASLException not authorized using smack 4.1.1
- Android aSmack - How to make custom message extension for file sending?
- Unable to receive upstream GCM messages with Node.js + XMPP
- Is Node-XMPP useless ? Choosing XMPP server
- Allow ejabberd_service (Jabber Component Protocol) to modify user's roster
- oauth2 authentication support in ejabberd
- iOS XMPP received message in conversation screen
- Typing Status Smack 4.1
- how ot get lastactivity using openfire server and asmack in android
- xmpp send, wait for response
Related Questions in PUBLISH-SUBSCRIBE
- using Message oriented middleware for communications within single web application realm
- Faye Ruby Server Side Publish on Heroku - EventMachine buffer overflow detected
- Pub/Sub Vs Observer Vs Reactive
- Adding pubsubhubbub link tag to Atom feed
- $rootScope.$broadcast in factory cannot change a value in other $scope
- Knockout component updating observable not being subscribed to by parent view model?
- Meteor show spinner on method call
- Meteor Counts in Router Level Subscription
- Meteor JS - Exception from sub id (id that does not exist)
- Is it posible to hook redis before key expired
- Redis hooking (publish-subscribe) under stress tests - performance under load
- How i can unsubscribe to a 'changefeed' in RethinkDB?
- Share profile picture change to all users in my roster
- ZeroMQ: How to send messages to a specific subscriber
- Node.js redis pubsub
Related Questions in EJABBERD
- Unable start mongoose im in ubuntu. process crashes
- Sending messages to ejabberd doesn't work for me
- Server less Group Messaging (chating) Xmpp
- ejabberd block messages from users that don't stay in my friend list
- Allow ejabberd_service (Jabber Component Protocol) to modify user's roster
- oauth2 authentication support in ejabberd
- Facing badmatch keyfile error while fetching APNS Socket
- Share profile picture change to all users in my roster
- Connection attempt from disallowed node 'ejabberdctl-1@localhost'
- XMPP support for avatars in multi-user chat
- All languages except English literals parsed in GCM POST request
- Parsing ASCII characters with Erlang
- Trouble installing ejabberd on ubuntu
- mod_rest on ejabberd 15.0.4 on MAC OS X yosemite is not starting
- How does whatsapp Keeps its eJabberd/XMPP server connected when the app is Closed?
Related Questions in GROUPCHAT
- didReceiveInvitation does not work ios xmpp after sending invitation to users
- Can you create a MS Teams group chat with a /pop via a MS Graph call or any other way that the chat box is popped out of MS teams?
- How to provide functionality to search groupchat with quickblox
- Ejabberd bookmarks vs subscribe in a typical group chat
- XMPP Group showing room to all users
- how to get group chat history from xmpp server php
- Conversejs groupchat subscriptions (ejabberd)
- Bot-framework bot creating groupchat
- Android - WhatsApp Group ID / Open group chat
- Openfire: Found user that never left a previous conversation
- Group Chat Feature
- How to create xmpp group chat and add members using smack 4.1 in android
- Retrieve Data from pubnub Android
- group chat approaches for crowds
- what is the best way to implement group chat in XMPP ejabberd server pubsub or MUC to make group chats like whatsapp
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?
You can implement Whatsapp like chatroom on top of MUC room. You would benefit from Message Archive support for MUC that will allow you to bypass the presence limitation by querying the history.