Hello all,
I am currently working on laying out a system architecture and exploring how to make some functionality work and was looking for feedback from anyone who has worked on something similar.
Briefly, the system will be composed of multiple local gateways for different equipment, and then one gateway existing at a higher "enterprise" level. The enterprise gateway is the only gateway that will have access to some of the software and systems the company uses, which we would like to integrate into the local gateway displays and functions. So, the enterprise gateway is going to contain all of the functions/queries to access these systems and databases, and the local gateways will have trigger the enterprise gateway projects to run these functions in order to send/receive data.
I am going down the path of setting up a system where each company subsystem has its own project on the enterprise gateway with various functions and queries, as well as a message handler to receive incoming messages and run the proper function or query. Along with these projects, there is another project on the enterprise gateway which is inheritable, and will be inherited by the local gateways. This parent project will contain scripts for each function in a subsystem which will contain a hard-coded system.util.sendRequest() call pre-populated with everything except the parameters that need to be passed. Seems straightforward but could end up being cumbersome at a certain size.
Was hoping to get some feedback on this type of setup, maybe there is something I am missing that can make this easier or more efficient.