app wont run

B

Brian Henry

every time i try to run my asp.net 2.0 app it 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.



when i check my app event log i get these entries (errors / warrnings)



Event Type: Warning
Event Source: ASP.NET 2.0.50727.0
Event Category: None
Event ID: 1073
Date: 2/7/2006
Time: 1:51:59 PM
User: N/A
Computer: BENEFITSERVER
Description:
Failed to initialize the AppDomain:/LM/W3SVC/433594531/Root

Exception: System.IO.FileLoadException
Message: Could not load file or assembly 'System.Web, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its
dependencies. Access is denied.
StackTrace: at System.Reflection.Assembly.nLoad(AssemblyName fileName,
String codeBase, Evidence assemblySecurity, Assembly locationHint,
StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean
forIntrospection)
at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef,
Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean
forIntrospection)
at System.Reflection.Assembly.InternalLoad(String assemblyString,
Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean
forIntrospection)
at System.Activator.CreateInstance(String assemblyName, String typeName,
Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args,
CultureInfo culture, Object[] activationAttributes, Evidence securityInfo,
StackCrawlMark& stackMark)
at System.Activator.CreateInstance(String assemblyName, String typeName)
at System.AppDomain.CreateInstance(String assemblyName, String typeName)
at System.AppDomain.CreateInstance(String assemblyName, String typeName)
at
System.Web.Hosting.ApplicationManager.CreateAppDomainWithHostingEnvironment(String
appId, IApplicationHost appHost, HostingEnvironmentParameters
hostingParameters)
at
System.Web.Hosting.ApplicationManager.CreateAppDomainWithHostingEnvironmentAndReportErrors(String
appId, IApplicationHost appHost, HostingEnvironmentParameters
hostingParameters)

For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.




Event Type: Error
Event Source: ASP.NET 2.0.50727.0
Event Category: None
Event ID: 1088
Date: 2/7/2006
Time: 1:51:59 PM
User: N/A
Computer: BENEFITSERVER
Description:
Failed to execute request because the App-Domain could not be created.
Error: 0x80070005 Access is denied.

For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.




now... run www service in IIS 5.0 isolation mode is turned off! and my site
is set up to run in the DefaultAppPool and its ASP.NET version is set to
2.0.50727... so what could be wrong? my other sites work just fine on the
same sever! just this one site wont work... and works perfectly fine on a
different server... and works fine on our development test server (we are
moving it from its current location to new hardware) and they are running on
windows 2003 SP1... any ideas? thanks!
 
G

Guest

Have you tried running it in a seperate app pool that ONLY runs that 2.0
application, nothing else?

Brian Henry said:
every time i try to run my asp.net 2.0 app it 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.



when i check my app event log i get these entries (errors / warrnings)



Event Type: Warning
Event Source: ASP.NET 2.0.50727.0
Event Category: None
Event ID: 1073
Date: 2/7/2006
Time: 1:51:59 PM
User: N/A
Computer: BENEFITSERVER
Description:
Failed to initialize the AppDomain:/LM/W3SVC/433594531/Root

Exception: System.IO.FileLoadException
Message: Could not load file or assembly 'System.Web, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its
dependencies. Access is denied.
StackTrace: at System.Reflection.Assembly.nLoad(AssemblyName fileName,
String codeBase, Evidence assemblySecurity, Assembly locationHint,
StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean
forIntrospection)
at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef,
Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean
forIntrospection)
at System.Reflection.Assembly.InternalLoad(String assemblyString,
Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean
forIntrospection)
at System.Activator.CreateInstance(String assemblyName, String typeName,
Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args,
CultureInfo culture, Object[] activationAttributes, Evidence securityInfo,
StackCrawlMark& stackMark)
at System.Activator.CreateInstance(String assemblyName, String typeName)
at System.AppDomain.CreateInstance(String assemblyName, String typeName)
at System.AppDomain.CreateInstance(String assemblyName, String typeName)
at
System.Web.Hosting.ApplicationManager.CreateAppDomainWithHostingEnvironment(String
appId, IApplicationHost appHost, HostingEnvironmentParameters
hostingParameters)
at
System.Web.Hosting.ApplicationManager.CreateAppDomainWithHostingEnvironmentAndReportErrors(String
appId, IApplicationHost appHost, HostingEnvironmentParameters
hostingParameters)

For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.




Event Type: Error
Event Source: ASP.NET 2.0.50727.0
Event Category: None
Event ID: 1088
Date: 2/7/2006
Time: 1:51:59 PM
User: N/A
Computer: BENEFITSERVER
Description:
Failed to execute request because the App-Domain could not be created.
Error: 0x80070005 Access is denied.

For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.




now... run www service in IIS 5.0 isolation mode is turned off! and my site
is set up to run in the DefaultAppPool and its ASP.NET version is set to
2.0.50727... so what could be wrong? my other sites work just fine on the
same sever! just this one site wont work... and works perfectly fine on a
different server... and works fine on our development test server (we are
moving it from its current location to new hardware) and they are running on
windows 2003 SP1... any ideas? thanks!
 
G

George Ter-Saakov

Try to set
<customErrors mode="Off" />

in a web.config

by default it's "RemoteOnly"

then it should give you the error

George.



Brian Henry said:
every time i try to run my asp.net 2.0 app it 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.



when i check my app event log i get these entries (errors / warrnings)



Event Type: Warning
Event Source: ASP.NET 2.0.50727.0
Event Category: None
Event ID: 1073
Date: 2/7/2006
Time: 1:51:59 PM
User: N/A
Computer: BENEFITSERVER
Description:
Failed to initialize the AppDomain:/LM/W3SVC/433594531/Root

Exception: System.IO.FileLoadException
Message: Could not load file or assembly 'System.Web, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its
dependencies. Access is denied.
StackTrace: at System.Reflection.Assembly.nLoad(AssemblyName fileName,
String codeBase, Evidence assemblySecurity, Assembly locationHint,
StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean
forIntrospection)
at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef,
Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean
forIntrospection)
at System.Reflection.Assembly.InternalLoad(String assemblyString,
Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean
forIntrospection)
at System.Activator.CreateInstance(String assemblyName, String typeName,
Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[]
args, CultureInfo culture, Object[] activationAttributes, Evidence
securityInfo, StackCrawlMark& stackMark)
at System.Activator.CreateInstance(String assemblyName, String typeName)
at System.AppDomain.CreateInstance(String assemblyName, String typeName)
at System.AppDomain.CreateInstance(String assemblyName, String typeName)
at
System.Web.Hosting.ApplicationManager.CreateAppDomainWithHostingEnvironment(String
appId, IApplicationHost appHost, HostingEnvironmentParameters
hostingParameters)
at
System.Web.Hosting.ApplicationManager.CreateAppDomainWithHostingEnvironmentAndReportErrors(String
appId, IApplicationHost appHost, HostingEnvironmentParameters
hostingParameters)

For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.




Event Type: Error
Event Source: ASP.NET 2.0.50727.0
Event Category: None
Event ID: 1088
Date: 2/7/2006
Time: 1:51:59 PM
User: N/A
Computer: BENEFITSERVER
Description:
Failed to execute request because the App-Domain could not be created.
Error: 0x80070005 Access is denied.

For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.




now... run www service in IIS 5.0 isolation mode is turned off! and my
site is set up to run in the DefaultAppPool and its ASP.NET version is set
to 2.0.50727... so what could be wrong? my other sites work just fine on
the same sever! just this one site wont work... and works perfectly fine
on a different server... and works fine on our development test server (we
are moving it from its current location to new hardware) and they are
running on windows 2003 SP1... any ideas? thanks!
 
B

Brian Henry

no, still says application unavailable even with that

however i fixed it somehow by deleteing the app poll the site and recreating
them...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,065
Latest member
OrderGreenAcreCBD

Latest Threads

Top