aspnet_wp.exe (PID: 2756) stopped unexpectedly.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Trying to use the System.Data.OracleClient provider. I can create the connection but when I try to open it the browser craps out and I get a page that says "Server Application Unavailable - The web application you are attempting to access on this web server is currently unavailable. Please hit the 'Refresh' button in your web browser to retry your request

Administrator Note: An error message detailing the cause of this specific request failure can be found in the application event log of the web server. Please review this log entry to discover what caused this error to occur.

The event logged is

Date: 02/27/2004 Source: ASP.NET 1.1.4322.
Time: 1:27:47 PM Category: Non
Type: Error Event ID: 100
User: N/
Computer: <I'm withholding this
Description
aspnet_wp.exe (PID: 2756) stopped unexpectedly

For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
 
I am also getting same error, Any Ideas??

GensaRob said:
Trying to use the System.Data.OracleClient provider. I can create the
connection but when I try to open it the browser craps out and I get a page
that says "Server Application Unavailable - The web application you are
attempting to access on this web server is currently unavailable. Please
hit the 'Refresh' button in your web browser to retry your request.
Administrator Note: An error message detailing the cause of this specific
request failure can be found in the application event log of the web server.
Please review this log entry to discover what caused this error to occur."
The event logged is:

Date: 02/27/2004 Source: ASP.NET 1.1.4322.0
Time: 1:27:47 PM Category: None
Type: Error Event ID: 1000
User: N/A
Computer: <I'm withholding this>
Description:
aspnet_wp.exe (PID: 2756) stopped unexpectedly.

For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.
 
There were a lot of problems I was trying to track down on Friday, but I
think this one ended up being a truly bonehead mistake. I had a class
with a property setup like this:

private string foo;
public string foobar
{
get
{
// stuff
...
return( foobar );
}
}

See the oops? What I should have done was say

return( foo );

but as it was written I set up an infinite recursion with the GET
accessor being called by the GET accessor. This gave the appearance of
freezing the application. I'd eventually get bored and kill the app,
and thus receive the "app terminated unexpectedly" error. Once I
corrected the bonehead coding error, I got to move on to an all
new-and-improved error where the code can't seem to access the OCI.DLL
file in the Oracle client software. :(

This appears to be a problem with the client install, and I'm debating
whether I should try reinstalling it or just set up an ODBC connection
-- or if the ODBC connection is reliant upon the Oracle client and it
won't work either.

Cheers,
-- Rob
 
Back
Top