Hi all,
I have developped a very simple Windows service that references a managed .NET dll.
the code within the dll contains a static class to read/write data from registry.
So the OnStart() method of the service simply calls the dll to read info from registry, but the static method reading info fails to execute...
the dll tested within a console or winform application works fine (i can call the static class and get the info i want)
So i assume im facing issues with the Windows service using the static class within the dll...
Has anyone ever heard of windows service calling static methods??
Any help would be much appreciated.
Regards.
I have developped a very simple Windows service that references a managed .NET dll.
the code within the dll contains a static class to read/write data from registry.
So the OnStart() method of the service simply calls the dll to read info from registry, but the static method reading info fails to execute...
the dll tested within a console or winform application works fine (i can call the static class and get the info i want)
So i assume im facing issues with the Windows service using the static class within the dll...
Has anyone ever heard of windows service calling static methods??
Any help would be much appreciated.
Regards.
Comment