Patrick
Trying to figure a means of Message Brokering
You should likely read up about KISS first. I get lost trying to read and understand all the different mechanisms in your setup because of these names you've given them.
In a more serious answer:
You need a centralised message bus/queue, that will capture messages and process them. This is likely where your Arduino is also plugged into? Unless that's on another machine. This could be as simple as a database you write to at the end of an API or RabbitMQ etc.
Each consumer of the queue then writes/reads messages.
6 replies
Publish Profile Error
web.config doesn't load into ASP.NET Core. You need to set an environment variable on the machine or use appsettings or explicitly configure a configuration source.
If you're using IIS, you need to let the app pool load the website, and let IIS set the environment variable with the web.config as you have done. You do not manually load up the executable.
7 replies