Application shut down randomly without any exception

  • Thread starter Thread starter Patrick Matusz
  • Start date Start date
P

Patrick Matusz

Hi all,
sometimes our application shuts down without any exception. We cannot
reproduce this behaviour... It breaks everywhere... Does anyone has the sam
behviour or already solved this problem? I'd like to hear from you!

Yours sincerly
Patrick Matusz
 
the first place to start is the application logs. everytime the application
terminates, the framework writes the reason to the logs. see what it says.
 
Hi,
and where on my harddisk are these logs?

Yours sincerly
Patrick Matusz

Alvin Bruney said:
the first place to start is the application logs. everytime the application
terminates, the framework writes the reason to the logs. see what it says.

--
Regards,
Alvin Bruney [ASP.NET MVP]
Got tidbits? Get it here...
http://tinyurl.com/3he3b
Patrick Matusz said:
Hi all,
sometimes our application shuts down without any exception. We cannot
reproduce this behaviour... It breaks everywhere... Does anyone has the sam
behviour or already solved this problem? I'd like to hear from you!

Yours sincerly
Patrick Matusz
 
Find the logs in the event viewer of control panel (type eventvwr at a
command prompt.)
Have a look at the application node

--
Regards,
Alvin Bruney [ASP.NET MVP]
Got tidbits? Get it here...
http://tinyurl.com/3he3b
Patrick Matusz said:
Hi,
and where on my harddisk are these logs?

Yours sincerly
Patrick Matusz

"Alvin Bruney [MVP]" <vapor at steaming post office> schrieb im Newsbeitrag
the first place to start is the application logs. everytime the application
terminates, the framework writes the reason to the logs. see what it says.

--
Regards,
Alvin Bruney [ASP.NET MVP]
Got tidbits? Get it here...
http://tinyurl.com/3he3b
Patrick Matusz said:
Hi all,
sometimes our application shuts down without any exception. We cannot
reproduce this behaviour... It breaks everywhere... Does anyone has
the
sam
behviour or already solved this problem? I'd like to hear from you!

Yours sincerly
Patrick Matusz
 
Hi again,
There is no event log for these shut downs. What else can we do?

Cheers
Patrick
Alvin Bruney said:
Find the logs in the event viewer of control panel (type eventvwr at a
command prompt.)
Have a look at the application node

--
Regards,
Alvin Bruney [ASP.NET MVP]
Got tidbits? Get it here...
http://tinyurl.com/3he3b
Patrick Matusz said:
Hi,
and where on my harddisk are these logs?

Yours sincerly
Patrick Matusz

"Alvin Bruney [MVP]" <vapor at steaming post office> schrieb im Newsbeitrag
the first place to start is the application logs. everytime the application
terminates, the framework writes the reason to the logs. see what it says.

--
Regards,
Alvin Bruney [ASP.NET MVP]
Got tidbits? Get it here...
http://tinyurl.com/3he3b
Hi all,
sometimes our application shuts down without any exception. We cannot
reproduce this behaviour... It breaks everywhere... Does anyone has the
sam
behviour or already solved this problem? I'd like to hear from you!

Yours sincerly
Patrick Matusz
 
Patrick said:
Hi all,
sometimes our application shuts down without any exception. We cannot
reproduce this behaviour... It breaks everywhere... Does anyone has the sam
behviour or already solved this problem? I'd like to hear from you!

Yours sincerly
Patrick Matusz

Is it pure .NET or does it use COM ?
 
It sounds like one of the 3rd party components you are calling is doing
something nasty like calling TerminateProcess from unmanaged code. If you
can, try stubbing out the calls to these components to try to isolate the
one that is doing it to you.
 
Back
Top