2
Hello, I have some windows services written in C# (Framework 4.0) running on server here in the company, these services perform some monitoring to make information available for when the user logs into the Asp.net system.
We will stop using the internal server to use an external hosting, there is an alternative for windows services to be hosted, because in these external hosting it is not possible to install a windows service. At first we will use UOL Host but if anyone suggests a better accommodation thank you.
I’m counting on your help.
Grateful
It depends on the tasks and resources that these services consume. If it’s just a database, maybe you don’t even have to host them in a new environment, just make the right notes. But if your Asp.net application depends on these windows services, you should look for a more complete hosting solution that provides the environment with all the requirements you need.
– Leandro Angelo
I had a similar case and we simply converted the services to web applications that run on
IIS
and solve the problem. The services were very simple, read folders and copied files besides sending email, all easily migrated to a Web application, practically only copy and paste– Ricardo Pontual
These webservices access the database to store the monitoring data and access external webservices to obtain the analysis data. The services are running 24 hours, are not "startados" by intervention of some user.
– Patrícia Oliveira