Sitecore Messaging Framework
Recently I have implemented Sitecore Message Framework. Hopefully, it will be helpful for you.
Scenario:
I had a scenario where I was using a scaled environment and I wanted to save some data on the master DB from content delivery. As you know content delivery can access Core and Web Db and it cannot access master DB so to achieve this functionality I have used Sitecore Messaging Framework.
What is a Sitecore Messaging Framework?
Sitecore Messaging was introduced in Sitecore 9.0.1 version (Only SQL Transport). It supports message-based communication in Sitecore. It is part of the XP, not part of the XM configuration. It wraps up the Rebus library.
Please install the following libraries
- Sitecore.Framework.Messaging.Abstractions
- Sitecore.Framework.Messaging.Configuration
Below are the steps:
- You need to create a configuration file for the bus which you need to copy to CM and CD.
- Then you need to create an empty class.
- Now you need to create a class and in that class define all properties which you want. I am mentioning Email and Name.
- Let's create a config file where you need to initialize the bus connections via the Sitecore Initialization pipeline
Comments