473,624 Members | 2,447 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Server Application Unavailable

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 your web browser
to retry your request.

Is there something special I need to configure to for aspx pages?
Nov 19 '05 #1
4 9007
Hi,

Pls visit the following link:

http://support.microsoft.com/default...;en-us;Q315158

Hope this helps.

Prakash.NET

"Dave" wrote:
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 your web browser
to retry your request.

Is there something special I need to configure to for aspx pages?

Nov 19 '05 #2
Thanks for Prakash's informative inputs.

Hi Dave,

Regarding on such issue, there're serveral possible causes which are also
depend on the detailed envirnoment and sceanrio. Anyway, I suggest we check
from the IIS log and Windows eventlog to see whether there has any
informative log entries there.

Please feel free to let me know if there're any new findings.

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
Thanks guys

The error code in event viewer is event id 1081, Source ASP.NET 1.1.4322.0:
aspnet_wp.exe could not be started. The error code for the failure is
80070545. This error can be caused when the worker process account has
insufficient rights to read the .NET Framework files. Please ensure that the
..NET Framework is correctly installed and that the ACLs on the installation
directory allow access to the configured account.

S search for error 80070545 in the MS KB does not return anything.

I read "Article ID : 315158 FIX: ASP.NET does not work with the default
ASPNET account on a domain controller " but it does not help.

I created an ASPUser account and gave it rights to "log on as a batch job"
but I have Net Framework version v1.1.4322 and I do not see a username and
password attributes in the <processModel > section of the Machine.config
file.

Any ideas?

Thanks
Dave


"Steven Cheng[MSFT]" <v-******@online.m icrosoft.com> wrote in message
news:nN******** *****@TK2MSFTNG XA01.phx.gbl...
Thanks for Prakash's informative inputs.

Hi Dave,

Regarding on such issue, there're serveral possible causes which are also
depend on the detailed envirnoment and sceanrio. Anyway, I suggest we
check
from the IIS log and Windows eventlog to see whether there has any
informative log entries there.

Please feel free to let me know if there're any new findings.

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 #4
Hi Dave,

As you mentioned that you've tried following the things in the kb:

315158 FIX: ASP.NET does not work with the default
ASPNET account on a domain controller "

Is your server a DC machine? If so, you can switch the ASP.NET application
to running under LocalSystem account or a domain account. For how to create
a custom process Identity, here is a msdn reference for creating custom
ASP.NET worker process idenitty for IIS5 mode:

http://msdn.microsoft.com/library/de...us/secmod/html
/secmod15.asp

For w2k3 IIS6, we could just add a custom account into the IIS_WPG group to
make sure it has the sufficient permission s to run asp.net applciation.

If your server is not a DC box, we may need to looking for other things on
this issue.

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.)

--------------------
| From: "Dave" <da*******@news group.nospam>
| References: <ex************ *@TK2MSFTNGP09. phx.gbl>
<10************ *************** *******@microso ft.com>
<nN************ *@TK2MSFTNGXA01 .phx.gbl>
| Subject: Re: Server Application Unavailable
| Date: Sun, 10 Jul 2005 17:25:26 -0700
| Lines: 52
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2527
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527
| X-RFC2646: Format=Flowed; Original
| Message-ID: <Ot************ **@TK2MSFTNGP09 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| NNTP-Posting-Host: c-24-130-211-137.hsd1.ca.com cast.net 24.130.211.137
| Path: TK2MSFTNGXA01.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP09.phx. gbl
| Xref: TK2MSFTNGXA01.p hx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:1114 29
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| Thanks guys
|
| The error code in event viewer is event id 1081, Source ASP.NET
1.1.4322.0:
| aspnet_wp.exe could not be started. The error code for the failure is
| 80070545. This error can be caused when the worker process account has
| insufficient rights to read the .NET Framework files. Please ensure that
the
| .NET Framework is correctly installed and that the ACLs on the
installation
| directory allow access to the configured account.
|
| S search for error 80070545 in the MS KB does not return anything.
|
| I read "Article ID : 315158 FIX: ASP.NET does not work with the default
| ASPNET account on a domain controller " but it does not help.
|
| I created an ASPUser account and gave it rights to "log on as a batch
job"
| but I have Net Framework version v1.1.4322 and I do not see a username
and
| password attributes in the <processModel > section of the Machine.config
| file.
|
| Any ideas?
|
| Thanks
| Dave
|
|
|
|
| "Steven Cheng[MSFT]" <v-******@online.m icrosoft.com> wrote in message
| news:nN******** *****@TK2MSFTNG XA01.phx.gbl...
| > Thanks for Prakash's informative inputs.
| >
| > Hi Dave,
| >
| > Regarding on such issue, there're serveral possible causes which are
also
| > depend on the detailed envirnoment and sceanrio. Anyway, I suggest we
| > check
| > from the IIS log and Windows eventlog to see whether there has any
| > informative log entries there.
| >
| > Please feel free to let me know if there're any new findings.
| >
| > 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 #5

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

Similar topics

0
528
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
2781
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
2970
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 debugging on the web server. server side error occurred on sending debug HTTP Request. I am running WinXP Pro SP1 with all hotfixes and VS.NET 2002 and .NET Framework 1.0
1
3151
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 Windows Server 2003 Enterprise Edition Only. This works on Windows 2000, Windows 2003 Web Edition and
9
647
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 application. I use W2K SP4 and have applied the hot Fix KB824146 and KB824105, both IE fixes. I don't have VS installed because this is a Quality Environment. I do have .NET SDK and .NET 1.1 Runtime installed. I can't change my APSNET user to run as...
6
2870
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 on this web server is currently unavailable. Please hit the "Refresh" button in your web browser to retry your request.
0
1277
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 Application Unavailable" errors. I'm using a custom "Server Application Unavailable" page to send me an email whenever this occurs. I also have a ProcessHistory page that leverages ProcessModelInfo.GetHistory() to show me what's going on at the...
17
5082
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 framework). I can however view other ASP.NET 1.1 sites on my local Windows XP machine. It's only the...
13
4739
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: http://support.microsoft.com/default.aspx?scid=kb;en-us;Q315158 But the problem is that 99% of these are for ASP .NET 1.x and this is .NET 2.x which I just installed to try and get .net working for the first time ever. I've see all the HACKS to get .net 1.x...
5
21650
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 somebody out there can help me ;) So, I have an ASP.NET 2.0 application on the test server. That application doesn't work, I get "Server Application Unavailable" all the time but... while experimenting with all the possibles solutions I found over...
0
8231
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 usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8168
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 synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8672
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8614
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 captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8471
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7153
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 launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6107
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4075
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
1780
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.