Vous êtes sur la page 1sur 3

FUENTE: http://www.codeproject.

com/Questions/334129/Server-Application-Unavailab
le-in-IIS-for-ASP-NET
------------------------------------------------------------Server Application Unavailable in IIS for ASP.NET application (PRICIPAL)
------------------------------------------------------------Hi All,
I am getting the error after hosting application in server.
i can access some pages. i am getting this error for some pages.
http://vivekthangaswamy.blogspot.in/2009/04/server-application-unavailable-in-ii
s.html
http://www.ironspeed.com/Designer/3.2.4/WebHelp/Part_VI/Server_Application_Unava
ilable.htm
I have searched and tried how they instructed in these sites. but nothing helped
me.
I checked in event log ,
these are the errors i am getting,
------------------------------------------------------------------------------------------aspnet_wp.exe (PID: 852) was recycled because it failed to respond to ping mess
age.
Faulting application aspnet_wp.exe, version 2.0.50727.1433, stamp 471ebf4c, faul
ting module kernel32.dll, version 5.1.2600.5512, stamp 4802a12c, debug? 0, fault
address 0x00012aeb.
------------------------------------------------------------------------------------------why this error occurs and how can we resolve this?
thanks,
Pal
***********
2 solutions
***********
-*-*-*-*-*Solution 1
-*-*-*-*-*try this:1). When you receive this error, make sure to check the event viewer on the serv
er. This is found under administrative tools. Under the application event log, y
ou will likely find an error that states: "It is not possible to run two differe
nt versions of ASP.NET in the same IIS process. Please use the IIS Administratio
n tool to run the application in a separate process."

An application pool is a process that responds to web requests under IIS. An app
lication pool does not have a setting for what type of ASP.Net applications will
be run in it. Instead, it loads the appropriate libraries when an ASP.Net appli
cation is loaded in the process. Because the libraries for ASP.Net 1.1 and ASP.N
et 2.0 are similar, but not the same, the application pool cannot respond to req
uests for both types of applications at the same time. This can cause sporadic b
ehaviour if you are using the server at the same time as another developer and y
ou have applications using different versions of the framework in the same appli
cation pool.
Make sure that on your server there is an application pool dedicated to ASP.Net
2.0 applications and one for ASP.Net 1.1 applications. When you add an ASP.Net a
pplication to the server, make sure you select the right application pool for it
.
This can happen for several reasons. An error message detailing the cause of thi
s specific request failure can be found in the application event log of the web
server. Open the Event Viewer and see the error message reported. Please review
this log entry to discover what caused this error.
If the error message reported is:
Aspnet_wp.exe could not be launched because the username and/or password supplie
d in the processModel section of the config file are invalid.
1). Stops the IIS and ASP.NET state services
2). Restart the IIS service
3). The ASP.NET user no longer has access to the Microsoft .NET Framework folder
, the application folder, or the Temporary Files folder.
Refer these links:FUENTE: http://vivekthangaswamy.blogspot.in/2009/04/server-application-unavailab
le-in-iis.html
------------------------------------------------------------Server Application Unavailable in IIS for ASP.NET application
------------------------------------------------------------Problem :
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 reques
t failure can be found in the application event log of the web server. Please re
view this log entry to discover what caused this error to occur.
Solution 1:
Open the command promt and direct to the folder C:\WINDOWS\Microsoft.NET\Framewo
rk\v2.0.50727
and run the command to install ASP.NET in your IIS
aspnet_regiis.exe -i
Solution 2:
To work around this problem, verify that the ASPNET account has the correct user
rights as follows:
a) %windir%\Microsoft.NET\Framework\Version\Temporary ASP.NET Files: Full Contro
l

%windir%\Temp: Full Control


b) Application folder: Read
c) %installroot% hierarchy (for example, %windir%\Microsoft.Net\Framework\Versio
n): Read
d) %windir%\Assembly: Read
e) Web site root (for example, %root%\Inetpub\Wwwroot) or the path that the defa
ult Web site points to: Read
f) %windir%\System32: Read(Typically, the ASPNET account has already been grante
d user rights as a member of the Users group.)
-*-*-*-*-*Solution 2
-*-*-*-*-*Hope this help
http://www.asp.net/whitepapers/ms03-32-issue[^]

Vous aimerez peut-être aussi