This document describes a server messaging system that allows initiating requests from web pages/services to target servers. It uses Hangfire to queue and process requests in the background. The system includes:
1. A ServerMessaging database that stores requests targeting servers and servers' responses.
2. A Scheduler that checks for pending requests and queues them to Hangfire every few seconds.
3. Hangfire processes the requests by finding and executing the appropriate class/method via reflection, with the server response written back to the ServerMessaging database.