473,545 Members | 2,113 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Win 2003 Server / IIS6 / Server Application Unavailable

Hi

My dev server has started posting a Server Application Unavailable error for
all of my asp.net web apps...

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.

When I check the event log as requested - I get the following event ...

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. You may be able
to use the /AUXSOURCE= flag to retrieve this description; see Help and
Support for details. The following information is part of the event: .NET
Runtime version 1.1.4322.2032- Config parser error: Error parsing
C:\WINDOWS\Micr osoft.NET\Frame work\v1.1.4322\ config\machine. config
Parser returned error 0x80070005.

IIS will server up static & asp pages without any trouble. My
machine.config file does not appear to have changed (i've windiff'd it
against a back up copy) and this server is NOT a primary domain controller.

Advice would be extremely well received beleive you me!

Thanks

Damon
Nov 19 '05 #1
6 2867
Hi Damon,

Welcome to ASP.NET newsgroup.
From your description, on one of your Win2003 server, all the ASP.NET web
applications are unable to get start, always return "Server Application
Unabailable" error and the eventlog indicate that there is something
incorrect within the machine.config, yes?

Based on my experience, some former issues which have the similiar symptom
were mostly caused by machine.config being corrupted or access permission
of the asp.net's worker process identity not enough. So currently I think
we can try the following things first:

1. Running filemon on the server when try starting a certain ASP.NET web
app to see whether there are any access failed error in filemon related to
asp.net's config files. Also, we can switch the asp.net app pool's process
identity to
Local System and run it to see whether the error still occur.

2. Though you've mentioned that you've try replacing the machine.config
with a backup one, I still recommed that you try copy a new version from
another healthy server which has the same environment if possible.

If there're any other findings, please also feel free to post here. Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)



Nov 19 '05 #2
Hi Stephen

Thanks for that. I used filemon, and true enough the (w3wp.exe via the)
NETWORK SERVICE account is getting ACCESS DENIED on the machine.config file
while attempting an OPEN request.

What can I do to rectify this?

Thanks

Damon

"Steven Cheng[MSFT]" wrote:
Hi Damon,

Welcome to ASP.NET newsgroup.
From your description, on one of your Win2003 server, all the ASP.NET web
applications are unable to get start, always return "Server Application
Unabailable" error and the eventlog indicate that there is something
incorrect within the machine.config, yes?

Based on my experience, some former issues which have the similiar symptom
were mostly caused by machine.config being corrupted or access permission
of the asp.net's worker process identity not enough. So currently I think
we can try the following things first:

1. Running filemon on the server when try starting a certain ASP.NET web
app to see whether there are any access failed error in filemon related to
asp.net's config files. Also, we can switch the asp.net app pool's process
identity to
Local System and run it to see whether the error still occur.

2. Though you've mentioned that you've try replacing the machine.config
with a backup one, I still recommed that you try copy a new version from
another healthy server which has the same environment if possible.

If there're any other findings, please also feel free to post here. Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)




Nov 19 '05 #3
Hi Damon,

So there must be something incorrect with your machine, is there any big
changes or accidents on your machine recently? Anyway, I think you can
first grant the required permissions for that file to Network Service
account to see what'll happen. If any new findings, please feel free to
post here.

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Nov 19 '05 #4
Hi Steven

We gave the ASPNET account access to machine.config and the NETWORK SERVICE
account appeared to be then added by default. ASP.NET web applications now
function again.

Very strange ... we can not isolate what could have happend on the server
that would have forced the loss of privileges on machine.config. Are there
any other locations that we should check for correct access/privileges - I'm
concerned that we'll hit related issues during future development.

Thanks for your help on this matter.

Damon
"Steven Cheng[MSFT]" wrote:
Hi Damon,

So there must be something incorrect with your machine, is there any big
changes or accidents on your machine recently? Anyway, I think you can
first grant the required permissions for that file to Network Service
account to see what'll happen. If any new findings, please feel free to
post here.

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Nov 19 '05 #5
Hi Damon,

I did always see some other ones encountering the similiar problems and the
cause are different from each other. But one common cause is some
Anti-virus software or other 3rd party tools that corrupte the existing ACL
of the asp.net's required resources such as machine.config file or the
temporary folder. You can also have a check on this.

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Nov 19 '05 #6
Hi Steven,

I get same error but I do not get anything from event log. And I can not
open or create .net project I get "'HTTP/1.1 500 Internal Server Error',
received when attempting to create or open an ASP.NET application". I reload
..net visual studio many times. but I get some error.
I did following step but it do not solve my problem also.
1. iisreset /stop
2. net user ASPNET /delete
3. aspnet_regiis -i (C:\WINDOWS\Mic rosoft.NET\Fram ework\v1.1.4322 )
4. iisreset /start

I checked iis setting I have application name created.

Could you give me any other suggestion?

Thanks for help;

cms123
"Steven Cheng[MSFT]" wrote:
Hi Damon,

Welcome to ASP.NET newsgroup.
From your description, on one of your Win2003 server, all the ASP.NET web
applications are unable to get start, always return "Server Application
Unabailable" error and the eventlog indicate that there is something
incorrect within the machine.config, yes?

Based on my experience, some former issues which have the similiar symptom
were mostly caused by machine.config being corrupted or access permission
of the asp.net's worker process identity not enough. So currently I think
we can try the following things first:

1. Running filemon on the server when try starting a certain ASP.NET web
app to see whether there are any access failed error in filemon related to
asp.net's config files. Also, we can switch the asp.net app pool's process
identity to
Local System and run it to see whether the error still occur.

2. Though you've mentioned that you've try replacing the machine.config
with a backup one, I still recommed that you try copy a new version from
another healthy server which has the same environment if possible.

If there're any other findings, please also feel free to post here. Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)




Nov 19 '05 #7

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

Similar topics

0
4647
by: Nitec Dev | last post by:
Our setup: server1 ASP database running on IIS5, Outlook 2000 and SQL 2000 on Windows 2000. Server2 runs Windows 2000 with Exchange 2000 using CDO 1.2 MAPI Sessions. Clients use IE5/6 and had Outlook 2000 installed. Upgraded to ASP running on IIS6, Outlook 2000 and SQL 2000 on Windows 2003. Server2 runs windows 2003 with Exchange 2003...
0
3243
by: Tessa | last post by:
Is there any security reason why you cannot print to a network printer from ASP.NET under IIS6 on Windows 2003 server? I'm using ASP.NET code to print to a server print queue using PrintDocument.Print() (.NET framework v 1.1) I can print to a local printer plugged into LPT1 on the web server, but not to a network printer. The same...
4
2497
by: Nirbho | last post by:
Hi, I've got 2 web servers. I've installed my web app on both Win2K3 machines. It works on one and not the other. I noticed that server which has the problem didn't have ASP.NET installed, nor did it have the right web extentions in IIS6. But it still doesn't work after correcting these. I've tried the MSDN solution which is to change...
4
8964
by: Dave | last post by:
I recentlymoved my asp and aspx webs to a new server. The asp webs (developed in InterDev) come up fine. But I get the following message when I try to view my donet asp (aspx) webs: Server Application Unavailable The web application you are attempting to access on this web server is currently unavailable. Please hit the "Refresh" button in...
2
6038
by: Ben Kim \(Vertical Dimensions, Inc.\) | last post by:
Hello all, I am trying to develop a web application using VB.NET 2003 on WinXP Pro (with latest patches) and .NET Framework (SDK) latest. I have IIS 5.1 up and running. Here is the problem I have: I type: http://localhost/ and get this error: Server Application Error The server has encountered an error while loading an application...
2
2019
by: Jeffrey Tate via DotNetMonster.com | last post by:
The error is: The proxy settings on this computer are not configured correctly for Web discovery. MSDN states that this is caused by: This error appears in the Add Web Reference dialog box if you are developing on a machine that is behind a firewall and a proxy server has not been explicitly specified for Internet Explorer connections. You...
2
2066
by: peter.bailey | last post by:
I've had a new server installed for me.. with Windows 2003 and II6 with ASP.NET ..but I want to run a small (but important) application written in ASP (all .ASP files) as it stands the server will not 'understand' .ASP files (only .ASPx) To avoid having to modify the whole application ( :-} ) can I get the server to execute
0
1235
by: BizWorld | last post by:
I am using Windows 2003 Server Standard edition, i just prepared this machine to use for one ASP.net application. i am using IIS 6. ASP.net application runs fine but it become unavailable in every hour with a big red color message "Server Application Unavailable". I did search on net and did set machine.config to use "System" as user and...
17
5072
by: Jon B | last post by:
Hi All! I have a ASP.NET 2.0 site that works on the Windows 2000 Server. However, when I tried to view this site on my local Windows XP machine, I get "Server Unavailable". If I switch the Windows XP IIS back to ASP.NET 1.1 then I get the Configuration Error (which is understandable because I'm trying to run an ASP.NET 2 site with 1.1...
0
7468
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7401
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7808
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7423
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
5972
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
4945
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3443
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1014
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
704
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.