IIS broblem with .NET runtime and missing DLL

  • Thread starter Thread starter Thomas
  • Start date Start date
T

Thomas

I get a lot of these errors in the servers event log:

The following information is part of the event: .NET Runtime version 1.1.4322.573- Setup Error: Failed to load resources from resource file.
Please check your Setup.

Does anyone know what is going on with this?

Best regards,
Thomas
 
Hi Thomas,

From your description, you are suffering the following error :
".NET Runtime version 1.1.4322.573- Setup Error: Failed to load resources
from resource file."

Are you developing an ASP.NET application and encountered this error when
running the application? If so what's the OS version of the server and the
IIS version? Also, is the .NET framework correctly installed on the certain
server. How long have you suffered the problem, just recently?

Based on my research, there are some former cases with the same symptom,
and some of them were caused by the code logic in the ASP.NET application,
for example:
1. Some too deep recursive operations cause stackoverflow and event server
crash

2. Some other implict errors cause the recursive loop and make the event
log display such error info.

So I recommend that you first have a check in your application to see
whether there are any blocks is potential to cause such issue.( You may add
some try...catch .. blocks into codes to help troubleshooting).

In addition, if it is caused by something else, it would require intensive
troubleshooting which would be done quickly and effectively with direct
assistance from a Microsoft Support Professional through Microsoft Product
Support Services. You can contact Microsoft Product Support directly to
discuss additional support options you may have available, by contacting us
at 1-(800)936-5800 or by choosing one of the options listed at
http://support.microsoft.com/default.aspx?scid=sz;en-us;top. If this is not
an urgent issue and your would like us to create an incident for you and
have Microsoft Customer Service Representative contact you directly,
please send email to (remove "online." from this no Spam email address):
mailto:[email protected] with the following information,
*Include "Followup: <Tomcat IssueID>" in the email Subject.
*Location of the post
*Subject Line
*First Name, Last Name
*MSDN Subscriber ID
*Company name (if any)
*Phone number
*e-mail address

Thanks.

Regards,

Steven Cheng
Microsoft Online Support

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

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx
 
Hi,

yes, we're developing a ASP.NET application.
It's Windows 2003 Server running IIS 6.
We're using the framework that comes bundled with the OS, so we're assuming
that it's correctly installed.
The problem comes every 2 - 4 hours, depending on the number of users and
level of activity.
When this error occurs the IIS also drops all active sessions.
Does this indicate what could be the problem?

We'll look into the issue with the recursive loop and stack overflow.

Thanks for your help so far =).

Best regards,
Thomas.
 
Hi Thomas,

Have you got any further progresses on this issue? As for the symptom
"When this error occurs the IIS also drops all active sessions.", I think
this is a normal behavior. Because in may cases will the ASP.NET or IIS
drop or restart sessions, such as an unhandled errors occured. Also, do you
think this indicate what could be the problem? Anyway, if there is any
further things we can help, please feel free to post here. Thanks.


Regards,

Steven Cheng
Microsoft Online Support

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

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx
 
Back
Top