Generic service control interface
I need an interface to a back-end service, mostly for control commands (stop, status, cancel, reload config). The service might be in Python, Perl, Java, or whatever, and runs continuously. The interface will let me send infrequent commands to the running process.
Generic service control interface
I need an interface to a back-end service, mostly for control commands (stop, status, cancel, reload config). The service might be in Python, Perl, Java, or whatever, and runs continuously. The interface will let me send infrequent commands to the running process.
Use a service layer with MVC
If a controller gets too fat and model instantiation starts to add up, a service layer could be used.
Use a service layer with MVC
If a controller gets too fat and model instantiation starts to add up, a service layer could be used.
Use a service layer with MVC
If a controller gets too fat and model instantiation starts to add up, a service layer could be used.
Windows Console App vs Service
My Situation I work for a company that builds software for many other companies. When I learned installers weren’t built-in with VS2012, I was curious how to deploy. So far, I have just been dropping .exes on our clients servers using PowerShell scripts. Now I need a full-blown Windows service. I have seen many example […]
Windows Console App vs Service
My Situation I work for a company that builds software for many other companies. When I learned installers weren’t built-in with VS2012, I was curious how to deploy. So far, I have just been dropping .exes on our clients servers using PowerShell scripts. Now I need a full-blown Windows service. I have seen many example […]
Windows Console App vs Service
My Situation I work for a company that builds software for many other companies. When I learned installers weren’t built-in with VS2012, I was curious how to deploy. So far, I have just been dropping .exes on our clients servers using PowerShell scripts. Now I need a full-blown Windows service. I have seen many example […]
Is it ok for services to reference one another?
I have a service that needs information implemented by another service in the same layer. Is it good practice for one service to take a dependency on another service in the same layer?
Is it ok for services to reference one another?
I have a service that needs information implemented by another service in the same layer. Is it good practice for one service to take a dependency on another service in the same layer?