I am planning to build a communication system based on mongooseim platform. I still want to use common user group across all the applications. What is the best stratergy of avoiding data duplication and maintaining rosters backend outside the mongooseim database structure.
Mongooseim rosters webhook backend
74 Views Asked by Sukitha Jayasinghe At
1
There are 1 best solutions below
Related Questions in XMPP
- How to Implement Chatbot at Scale
- How to connect Openfire with Kotlin
- Having trouble with node.js client joining a XMPP Prosody room
- Connecting to Openfire server from browser using xmpp.js
- Flutter xmpp_plugin - App crashes when open the app again
- XMPP - Openfire Subgroup
- Does the XMPP receipy still work in Franz
- Unable to retrieving chat history using Strophe.js and Ejabberd with XEP-0313: Message Archive Management (MAM)
- Integrate XMPP Openfire STUN server with client side js web application
- How to define a shaper in ejabberd for websocket connections?
- Accessing Content in XMPP PubSub Event Using pubsub:published Event (StanzaJS)
- Can xmpp server admin influence usage of omemo?
- is there anyone help me about this p2 ejabberd error?
- ejbberd : How to make IQ Handler parallel?
- Setup Ejabbered on a VPS
Related Questions in MONGOOSE-IM
- Message Archive Management is not supported by: MongooseIM doesn't return MAM feature if LocalAndDomainJID provided
- mongooseim: how to use backend action from documentation for mod privacy as an example?
- mongooseim 6.0.0 cluster setup in ubuntu 20.04
- MongooseIM keeps throwing FATAL FIPS SELFTEST FAILURE after server restart
- Is it possible to decode a compressed blob using a cqlsh query?
- MongooseIM mod_event_pusher RabbitMQ
- How do I add logs to MongooseIM logs?
- Unread messages count on XMPP
- How do I need to configure MongooseIM to allow registering new users? Getting error: Can't register user at node: not_allowed
- MongooseIM authentication with JWT and send message (XMPP)
- Is there any module for ejabberd like MongooseIm mod_inbox?
- How do I create bot user with webhook on server side in MongooseIM?
- Mongooseim 3.6.0 postgress connection Issue
- MongooseIm Rest API connection issue with local Setup
- Unable to Upload files in chat using MongooseIM as server and mod_http_upload module
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 # Hahtags
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?
Currently MongooseIM supports 3 backend types to store roster:
If you want to integrate roster with your other web service without data duplication, you need to implement new backed talking to your service directly.
A generic backend is a good idea, I'll discuss this with the team and probably we add it to our backlog. I'm not able to promise any dates when this would be implemented, though.