473,379 Members | 1,201 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,379 software developers and data experts.

aspnet_wp.exe crashing

Tom
I am having the following show up in my application event log:

=====================================
Source: .NET Runtime
Event ID: 0
Description:
The description for Event ID ( 0 ) in Source ( .NET Runtime ) cannot be
found. The local computer may not have the necessary registry information or
message DLL files to display messages from a remote computer. The following
information is part of the event: .NET Runtime version 1.1.4322.2032-
aspnet_wp.exe - Common Language Runtime Debugging Services: Application has
generated an exception that could not be handled.

Process id=0xecc (3788), Thread id=0xe20 (3616).

Click OK to terminate the application.
Click CANCEL to debug the application..
=======================================

immediately after that, the next entry in the application log is
Source ASP NET 1.1.4322.0
Event ID: 1000

Description:
aspnet_wp.exe (PID: 3788) stopped unexpectedly.

=========================================

If I restart IIS, it works for a while, maybe a day, then it crashes again.
Any clues ?

Thanks,
Tom
Nov 19 '05 #1
5 1833
Hi Tom:
Unfortunately, there is no easy way to know why the process stopped
unexpectedly.

You'll have to do some digging around. Fortunately there are tools
that can take a snapshot of the process before it terminates and from
there you can look at threads and call stacks to see what it was doing
at the moment it decided it needed to terminate.

See:
Production Debugging for .NET Framework Applications
http://msdn.microsoft.com/library/de...html/DBGrm.asp

Particularity chapter 4 will guide you on how to debug unexpected
process terminations.

HTH,

--
Scott
http://www.OdeToCode.com/blogs/scott/
On Fri, 29 Apr 2005 09:32:09 -0700, Tom
<To*@discussions.microsoft.com> wrote:
I am having the following show up in my application event log:

=====================================
Source: .NET Runtime
Event ID: 0
Description:
The description for Event ID ( 0 ) in Source ( .NET Runtime ) cannot be
found. The local computer may not have the necessary registry information or
message DLL files to display messages from a remote computer. The following
information is part of the event: .NET Runtime version 1.1.4322.2032-
aspnet_wp.exe - Common Language Runtime Debugging Services: Application has
generated an exception that could not be handled.

Process id=0xecc (3788), Thread id=0xe20 (3616).

Click OK to terminate the application.
Click CANCEL to debug the application..
=======================================

immediately after that, the next entry in the application log is
Source ASP NET 1.1.4322.0
Event ID: 1000

Description:
aspnet_wp.exe (PID: 3788) stopped unexpectedly.

=========================================

If I restart IIS, it works for a while, maybe a day, then it crashes again.
Any clues ?

Thanks,
Tom


Nov 19 '05 #2
You aren't using try/catch/finally everywhere you should. Trap
your errors...

--
2005 Microsoft MVP C#
Robbe Morris
http://www.robbemorris.com
http://www.masterado.net/home/listings.aspx

"Tom" <To*@discussions.microsoft.com> wrote in message
news:86**********************************@microsof t.com...
I am having the following show up in my application event log:

=====================================
Source: .NET Runtime
Event ID: 0
Description:
The description for Event ID ( 0 ) in Source ( .NET Runtime ) cannot be
found. The local computer may not have the necessary registry information
or
message DLL files to display messages from a remote computer. The
following
information is part of the event: .NET Runtime version 1.1.4322.2032-
aspnet_wp.exe - Common Language Runtime Debugging Services: Application
has
generated an exception that could not be handled.

Process id=0xecc (3788), Thread id=0xe20 (3616).

Click OK to terminate the application.
Click CANCEL to debug the application..
=======================================

immediately after that, the next entry in the application log is
Source ASP NET 1.1.4322.0
Event ID: 1000

Description:
aspnet_wp.exe (PID: 3788) stopped unexpectedly.

=========================================

If I restart IIS, it works for a while, maybe a day, then it crashes
again.
Any clues ?

Thanks,
Tom

Nov 19 '05 #3
TOm as Robbe adviced try sing TRY/CATCH
It should help where to start from

*** Sent via Developersdex http://www.developersdex.com ***
Nov 19 '05 #4
It doesn't sound like the problem is a managed exception - generally
something went terribly wrong in native code, or a memory threshold
was exceeded - something along those lines...

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Fri, 29 Apr 2005 21:19:54 -0400, "Robbe Morris [C# MVP]"
<in**@turnkeytools.com> wrote:
You aren't using try/catch/finally everywhere you should. Trap
your errors...


Nov 19 '05 #5
Tom
For now I have done the following:
1. Locate machine.config (try
C:\WINNT\Microsoft.NET\FramewoÂ*rk\<VERSION FOLDER>\CONFIG).
2. Open machine.config in Notepad or other text editor.
3. Search for this string: "<processModel"
4. In the processModel element, change userName="machine" to
userName="SYSTEM"
This seems to be working so far....not sure why.
"Scott Allen" wrote:
It doesn't sound like the problem is a managed exception - generally
something went terribly wrong in native code, or a memory threshold
was exceeded - something along those lines...

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Fri, 29 Apr 2005 21:19:54 -0400, "Robbe Morris [C# MVP]"
<in**@turnkeytools.com> wrote:
You aren't using try/catch/finally everywhere you should. Trap
your errors...


Nov 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: | last post by:
This question references to KB articles: http://support.microsoft.com/default.aspx?scid=kb;EN-US;315158 http://support.microsoft.com/default.aspx?scid=kb;EN-US;317012 I'm running Advanced Server...
2
by: Matt Sollars | last post by:
Hi all. I'm having a nasty problem. A client's website was originally written with classic ASP. They requested a new portion of the site that was deemed a perfect candidate for ASP.NET. So, .NET...
5
by: Ken Barrett | last post by:
I apologize in advance for cross-posting, but I have noted that others have experienced similar issues and was hoping that someone could help. Briefly, I am working on an ASP.NET content...
1
by: Derek Martin | last post by:
Hi list, I have created a web app with VS2k3.net using VB.net and everything was working fine until something went wrong and now all attempts to get at *any* .net based page on the server returns...
2
by: Lokanathan | last post by:
Currently we are experiencing a unique problem with regard to the ASP .net service. Intermittently the ASP .Net service gets stopped (error message displayed in the webpage is "Server Application...
2
by: Sidharth | last post by:
Hello, We are experiencing some issues with the aspnet_wp process on our live servers. The problems are intermittent and we cannot reproduce it on our dev and test servers. Currently around...
2
by: Marcin Belczewski | last post by:
I have a problem with aspnet_wp.exe on my Windows XP. When I start any of my web applications, webservices or even try to create asp.net project under vs.net - aspnet_wp.exe process starts -...
0
by: shashikant.mundlik | last post by:
Hi All, My .NET IDE is crashing when trying to attach any process in ASP.net application and try to debug. The error message is as follows. Faulting application devenv.exe, version 7.10.3077.0,...
1
by: Greg | last post by:
Hi, I have a web service that calls an an assembly on a server. My client calls the web service, the web service calls the assembly... very straightforward. I have noticed 2 things though...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.