Hi,
From time to time my asp.net application breaks/loses all the
variables in session
and then I got in event log this message:
.NET Runtime 2.0 Error
Faulting application w3wp.exe, version 6.0.3790.3959, stamp 45d6968e,
faulting module kernel32.dll, version 5.2.3790.4062, stamp 4626482b,
debug? 0, fault address 0x0000bee7.
laziers@gmail.com - 27 Mar 2008 14:19 GMT
On 27 Mar, 14:10, "lazi...@gmail.com" <lazi...@gmail.com> wrote:
> Hi,
> From time to time my asp.net application breaks/loses all the
[quoted text clipped - 5 lines]
> faulting module kernel32.dll, version 5.2.3790.4062, stamp 4626482b,
> debug? 0, fault address 0x0000bee7.
ps web site is asp.net 3.5, and the logic [some dll's] is in .net 2.0
maby this is the problem?
Peter Bromberg [C# MVP] - 27 Mar 2008 18:45 GMT
The problem most likely is that you had an unhandled exception. In ASP.NET
2.0 and later, any unhandled exceptions will unload the appDomain and your
app recycles. You can better instrument your app to find out more about what
is causing it. See here:
http://www.eggheadcafe.com/articles/20060305.asp
and here:
http://www.eggheadcafe.com/articles/20051205.asp
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short Urls & more: http://ittyurl.net
> Hi,
> From time to time my asp.net application breaks/loses all the
[quoted text clipped - 5 lines]
> faulting module kernel32.dll, version 5.2.3790.4062, stamp 4626482b,
> debug? 0, fault address 0x0000bee7.