I installed my c# application as windows service using the following command,
Installutil.exe
The installation is done in 32 bit machine.And the c# application is using 8088 port.
After installing the service the service property has changed to Automatic.
When the system restart the service also will be get restarted.
But some times it shows started as status ,but actually it is in stopped state and we need to manually start the service.
Can some one tell me what went wrong in this.
Thanks in advance.
sangita
Chances are that an unhandled exception occurred and the service process has terminated as result.
You should add logging to identify what unhandled exceptions occur and fix them.