473,418 Members | 2,023 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,418 software developers and data experts.

Server Application Unavailable!!

This morning I was quite happily working away when a
Windows Update prompted me for install. I found a
convenient brake point and duly installed it and
rebooted, oh dear what a mistake LOL!

Any asp.net page now fails with the following message: -

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
system event log of the web server. Please review this
log entry to discover what caused this error to occur.

Now I have looked at the millions of posts to do with
this and firstly I get nothing in the event log, so I
have no idea whats caused it??

The 2 Windows updates were: -

An IE6 security patch
A Data Access Components security patch

Am I the only person this has affected??
Anyone any ideas as to a solution??

Thanks in advance

Andy
Nov 17 '05 #1
5 1741
Hi Andy,

I was also facing same problem with my .NET Web Apps. I changed userName
attribute to SYSTEM in the <processModel> section of the Machine.config file
on my machine.

It worked for me. Hope works for u also....

Cheers
Yusuf D M
"Andy" <an**@thecodeclinic.net> wrote in message
news:0c****************************@phx.gbl...
This morning I was quite happily working away when a
Windows Update prompted me for install. I found a
convenient brake point and duly installed it and
rebooted, oh dear what a mistake LOL!

Any asp.net page now fails with the following message: -

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
system event log of the web server. Please review this
log entry to discover what caused this error to occur.

Now I have looked at the millions of posts to do with
this and firstly I get nothing in the event log, so I
have no idea whats caused it??

The 2 Windows updates were: -

An IE6 security patch
A Data Access Components security patch

Am I the only person this has affected??
Anyone any ideas as to a solution??

Thanks in advance

Andy

Nov 17 '05 #2
Hi

Yes I'll try that although I'm doing a System Restore at
the moment out of desperation!

-----Original Message-----
Hi Andy,

I was also facing same problem with my .NET Web Apps. I changed userNameattribute to SYSTEM in the <processModel> section of the Machine.config fileon my machine.

It worked for me. Hope works for u also....

Cheers
Yusuf D M
"Andy" <an**@thecodeclinic.net> wrote in message
news:0c****************************@phx.gbl...
This morning I was quite happily working away when a
Windows Update prompted me for install. I found a
convenient brake point and duly installed it and
rebooted, oh dear what a mistake LOL!

Any asp.net page now fails with the following message: -
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
system event log of the web server. Please review this
log entry to discover what caused this error to occur.

Now I have looked at the millions of posts to do with
this and firstly I get nothing in the event log, so I
have no idea whats caused it??

The 2 Windows updates were: -

An IE6 security patch
A Data Access Components security patch

Am I the only person this has affected??
Anyone any ideas as to a solution??

Thanks in advance

Andy

.

Nov 17 '05 #3
LW
SOLUTION (for now):

PROBLEM: The ASP.NET process runs under the "ASPNET"
local user account. After installing the updates, it is
required that the ASP.NET process have read access to the
folder:
\Documents And Settings\LocalService\Local
Settings\Temporary Internet Files

I don't know why it needs those rights, or if it will in
the future, but for now, here's the fix.

SOLUTION:
1. Yes, you can have the ASP.NET process run as SYSTEM,
but this is a SERIOUS security issue.
2. Better, and simpler, is to give the ASPNET account the
permissions it requires. Below I will outline how to
implement this.

FIX:
1. Open Windows Explorer, navigate to
\Documents and Settings
2. If the "LocalService" directory is NOT visible, you
need to choose "Folder Options" from the "Tools" menu.
Then you need to ensure that under the "View" tab,
protected OS files are NOT hidden!
3. Continue on to
\Documents and Settings\LocalService
4. Right-click on the "Local Settings" folder, then
select "Sharing and Security".
5. In the "Security" tab, "Add" the "ASPNET" user, and
make sure it has "Read" and "List Folder Contents"
permissions.
6. "Apply", "OK", .... etc until all windows closed.
7. That's it.
-----Original Message-----
Hi

Yes I'll try that although I'm doing a System Restore at
the moment out of desperation!

-----Original Message-----
Hi Andy,

I was also facing same problem with my .NET Web Apps. Ichanged userName
attribute to SYSTEM in the <processModel> section of theMachine.config file
on my machine.

It worked for me. Hope works for u also....

Cheers
Yusuf D M
"Andy" <an**@thecodeclinic.net> wrote in message
news:0c****************************@phx.gbl...
This morning I was quite happily working away when a
Windows Update prompted me for install. I found a
convenient brake point and duly installed it and
rebooted, oh dear what a mistake LOL!

Any asp.net page now fails with the following

message: -
Server Application Unavailable
The web application you are attempting to access onthis web server is currently unavailable. Please hit
the "Refresh" button in your web browser to retry your
request.

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

Now I have looked at the millions of posts to do with
this and firstly I get nothing in the event log, so I
have no idea whats caused it??

The 2 Windows updates were: -

An IE6 security patch
A Data Access Components security patch

Am I the only person this has affected??
Anyone any ideas as to a solution??

Thanks in advance

Andy

.

.

Nov 17 '05 #4
The following thread may help
http://groups.google.com/groups?hl=e...%26scoring%3Dd


"Andy" <an**@thecodeclinic.net> wrote in message news:<0c****************************@phx.gbl>...
This morning I was quite happily working away when a
Windows Update prompted me for install. I found a
convenient brake point and duly installed it and
rebooted, oh dear what a mistake LOL!

Any asp.net page now fails with the following message: -

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
system event log of the web server. Please review this
log entry to discover what caused this error to occur.

Now I have looked at the millions of posts to do with
this and firstly I get nothing in the event log, so I
have no idea whats caused it??

The 2 Windows updates were: -

An IE6 security patch
A Data Access Components security patch

Am I the only person this has affected??
Anyone any ideas as to a solution??

Thanks in advance

Andy

Nov 17 '05 #5
Hi Andy,

The Server Application Unavailable issue you are seeing right now is related
to an issue with the latest IE security patch on Windows XP Pro and IIS 5.1
when using ASP.NET v1.0.

This page below has a description of the problem, as well as a workaround
you can
apply immediately:

http://www.asp.net/faq/ms03-32-Issue.aspx

Thanks,

Scott

"Andy" <an**@thecodeclinic.net> wrote in message
news:0c****************************@phx.gbl...
This morning I was quite happily working away when a
Windows Update prompted me for install. I found a
convenient brake point and duly installed it and
rebooted, oh dear what a mistake LOL!

Any asp.net page now fails with the following message: -

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
system event log of the web server. Please review this
log entry to discover what caused this error to occur.

Now I have looked at the millions of posts to do with
this and firstly I get nothing in the event log, so I
have no idea whats caused it??

The 2 Windows updates were: -

An IE6 security patch
A Data Access Components security patch

Am I the only person this has affected??
Anyone any ideas as to a solution??

Thanks in advance

Andy

Nov 17 '05 #6

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

Similar topics

0
by: Mridul Buragohain | last post by:
hi all! ===================================== my environment: MS .NET 1.1 with Service pack 1 ASP.NET framework IIS 5.0 C#.NET language. =====================================
5
by: Ken Cox [Microsoft MVP] | last post by:
MS has posted this here: http://www.asp.net/faq/ms03-32-issue.aspx Fix for: 'Server Application Unavailable' Error after Applying Security Update for IE...
1
by: Reza Sadeghi | last post by:
Hi I am getting this error when I tried to browse any asp.net in visual studio.net. I can build the project but when I try to run and debug the project I get error message that "Unable to start...
1
by: Keith | last post by:
All, I have been told this is an ASP.NET issue and not an IIS issue, so I am posting this here. I have a problem with ASP.NET returning an HTTP 500 error when trying to run ASPX pages on...
9
by: Steve Buster | last post by:
All right, I have read every forum, newsgroup etc about this issue and no one seems to know how to fix it. I am getting a "Server Application Unavailable" exception running my .NET 1.1...
6
by: Damon Roberts | last post by:
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...
0
by: Phinneas | last post by:
Howdy, I have multiple apps running on a pair of dual-processor Win2k IIS servers, neither of which are domain controllers. My users are experiencing fairly frequent (10-20 / day) "Server...
4
by: casper | last post by:
Hi, I created an asp.net 2.0 website with VWD and made it an application in IIS. It was created on a ntfs disc (my documents...). The directory permissions are set on 'anonymous allowed' using...
13
by: Kevin Liebowicz | last post by:
Yes, I wasted the past two days trying to fix this. Yes, this is on a Win2003 Server. Yes, this machine is a domain controller. Yes, I seen the dozens of KB articles like this one:...
5
by: myth0s | last post by:
Hello everybody :) I have trouble getting my ASP application to work. I googled a lot for a solution... many solutions I tried came from The Scripts, but none of them worked. Nonetheless, I think...
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...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
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,...
0
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...

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.