I am developing a chat window using Can we get conversation history from Azure Web PubSub. Is there a way i can get the convesation history.
Can we get conversation history from Azure Web PubSub
300 Views Asked by Manjunath G At
1
There are 1 best solutions below
Related Questions in AZURE
- Why does Azure Auto-Scale scale go lower then minimum amount of instances?
- Data execution plan ended with error on DB restore
- Why does Azure CloudConfigurationManager.GetSetting return null
- Do I need other roles than Worker Role for a web site and service layer in Azure?
- Azure Web App PATH Variable Modification
- Azure Data Factory: LinkedService for AzureSql in failed state
- How To Update a Web Application In Azure and Keep The App Up the whole time
- Using Azure MobileServices library with my own LAN WebApi
- ionCube loader error on Azure IIS
- App crash (if closed) after click on notification
- How to get sql data bases instances in azure using java api
- I want to create file in azure share using python PUT requests but getting error signature not correct including headers
- Enabling OPTIONS method on Azure Cloud Service (to enable CORS)
- Redirecting subdomain to directory on Azure
- Kaltura account settings error
Related Questions in WEBSOCKET
- How to send raw data using socket.io
- HttpRequestContext vs HttpContext
- Websocket support on JBoss 6
- How to send/receive messages through a web socket on windows phone 8.1
- Stop receiving an event for some time in socket io
- Nginx not passing websocket upgrade response back to client?
- Jboss showing this error in eclipse
- Oauth in Tyrus WebSocket
- Meteor: Workaround for having websockets blocked in port 80?
- Python Server - Processing WebSocket.close()
- Multithread using Executor and WebSocket
- Start Rumpetroll on Debian
- What are the possible bugs that cause slow response (sometimes but not all the time) for a websocket connection?
- Ratchet websocket server not responding after some hour
- Angularjs data is not updated on call of $apply
Related Questions in CHAT
- PHP chat submit refresh button
- UCWA: integrating advanced chat options
- What technologies should I use to create a real time One to One chat?
- Mysterious number of chars read with read() in simple chat in C?
- Android pubnub chat using parse giving incorrect authentication key error
- jquery chat with time
- QuickBlox Chat not logging in
- Is it a good idea to use push notifications for mobile chat applications? (Android, iOS)
- JavaFX chat Application
- Framework for chat server using AKKA
- Scalable private message system
- Chat application using CFWebsocket
- Quickblox: not getting contact list from EJabber
- Create a job in Parse which delete all old objects in all Classes
- GCM and quickblox pushnotification
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 AZURE-WEB-PUBSUB
- Create Google Pub/Sub subscription with expiration period as never
- Is there a way of having the Azure Function Web PubSub trigger fire only for certain groups?
- Trouble Adding User to Group in Azure Web PubSub - Getting 403 Forbidden Error
- Azure JSON subprotocol `json.webpubsub.azure.v1`to join a group fetch responses programmatically
- Can we get conversation history from Azure Web PubSub
- How to Mock Azure.Messaging.WebPubSub.WebPubSubServiceClient
- How do I get the number of clients connected to my azure webPubSub?
- Azure Web PubSub disconnected event doesn't work on closed web socket
- dead lettering in Azure event grid does not work
- Client permissions on serverless Azure Web PubSub
- Connecting Azure Web PubSub Client Disconnects others
- GET JWT Bearer token for Azure Web PubSub Rest API to authenticate
- React Websocket gets inactive after some time
- Azure Web PubSub ClientWebSocket "The server returned status code '401' when status code '101' was expected."
- What are the differences between Azure Web PubSub and Event Grid/Event Hub?
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?
According to this FAQ, the Azure Web PubSub service works as a data processor service and does not store customer messages. Therefore, you need to leverage other Azure services to store the conversation history. There is a Chatr application built by Ben Coleman which may be a good reference for you. You could start from this blog.