c# - System.ExecutionEngineException With Windows Service -
i have windows service accesing other project (no matter what, cause doesn't start)
the thing have system.executionengineexception while starting service (in code)
protected override void onstart(string[] args) { const iconfig config = null; _weatherservice = new weatherservice(); _weatherservice.setup(config); _weatherservice.init(); _weatherservice.start(); } i'm in windows xp , .net 3.5 (no, i'm not past) , can't start service console application. know how solve it? (if need more info, please ask it)
thank guys ☺
maybe try disabling concurrent garbage dumping -- seen here: http://msdn.microsoft.com/en-us/library/at1stbec(v=vs.90).aspx
if you're program performance heavy, concurrent garbage collection's memory movement throw exception.
why concurrent gc cause executionengineexception (per msdn)?
http://msdn.microsoft.com/en-us/library/system.executionengineexception(v=vs.90).aspx
Comments
Post a Comment