Windows Service
-
We have an application which is run as a Windows Service. This application uses a dll that implements some business logic. The service is running fine and now we have implemented some new business logic in this dll. None of the other dependencies have changed. The application remains unchanged. My question now is: Do we have to recompile the application and reinstall the service? My personal view would be NO. Am I right? A quick feedback would be much appreciated. Thanks/RB
-
We have an application which is run as a Windows Service. This application uses a dll that implements some business logic. The service is running fine and now we have implemented some new business logic in this dll. None of the other dependencies have changed. The application remains unchanged. My question now is: Do we have to recompile the application and reinstall the service? My personal view would be NO. Am I right? A quick feedback would be much appreciated. Thanks/RB
1. If the service will find every function with the same parameters, he will need, in this dll, then you do not have to recompile or reinstall the service. It should run as before. 2. If you change some code of the dll, so that you have to change the code of your service. Its normally enough to recompile the service. You do not have to reinstall it. Greetings Covean
-
We have an application which is run as a Windows Service. This application uses a dll that implements some business logic. The service is running fine and now we have implemented some new business logic in this dll. None of the other dependencies have changed. The application remains unchanged. My question now is: Do we have to recompile the application and reinstall the service? My personal view would be NO. Am I right? A quick feedback would be much appreciated. Thanks/RB
Depends if your service is signed or not, you may have to implement a binding redirect if it doesn't work off the bat. http://stackoverflow.com/questions/468825/binding-redirects[^]
-
We have an application which is run as a Windows Service. This application uses a dll that implements some business logic. The service is running fine and now we have implemented some new business logic in this dll. None of the other dependencies have changed. The application remains unchanged. My question now is: Do we have to recompile the application and reinstall the service? My personal view would be NO. Am I right? A quick feedback would be much appreciated. Thanks/RB
There is no need of reinstalling of window service there...... But Question regarding business components... depending upon the type of assembly... if it is deployed in GAC... there is not need to recompile the window service... else need to recompile the service....