Hi all,
We have a use case where we will combine protocol with DOM Definitions. Is it fine to create DOM Manager and all Definitions withing protocol, or creation of AS is mandatory?
Thanks in advance for your answers.
Hi Alija, Yes, that should be perfectly fine. You could indeed have your DOM setup/provisioning code inside a protocol. Just keep in mind that a long-running C# code block could have a negative side effect on the protocol. If this is just creating the ModuleSettings, SectionDefinitions and DOM definitions, this should be fast and cause no problems. If it however would need to provision a considerable amount of DOM instances as well in one go, be sure to look at ways to have this be done in the background (e.g. Queued QActions)

Great, thanks for the answer!