Sunday, November 24, 2013

Faulting application version 1.0.0.0, faulting module kernel32.dll, version 5.2.3790.5069, fault address 0x0000bef7.

To fix this issue,i uninstall the servcie.And while installing the servcie again ,i have taken all the support libary that are used in project and project dll and exe. Then I install the servcie.


Then in windows servcie code, on service Start call,I have just called the methods that are present in my main BL layer.


So their i change the code like used thread and start the thread.


Ex.


Thread taskThread=null;


taskThread =new Thread(new ThreadStart(RunTask));


And the main BL function i called from RunTask() Method.This will solve my problem.


taskThread.Start();

No comments:

Post a Comment