.NET Framework is getting crashed at irregular intervals

0

I have hosted(IIS 7) web application on Windows server 2008 r2.
This web app worked fine for few days but today it stopped working and an error message displayed like shown below.
enter image description here
I have opened the Event viewer and got the below shown error message
Failed to execute request because App-Domain could not be created.Error: 0x8007000e Not enough storage is available to complete this operation.
I found many threads with same error but none of them solved this problem 1. As it is a Production Server there is no shortage of RAM and disc space etc. 2. This web app is running under account operator credentials he has full access to the web app file directory and the same account has Logon as batch privilage.

But i when repaired the >NET Framework 4.0 using the Microsoft Repair tool it started working. But the above said error is recurring at irregular intervals(4 hours or 6 hours.) Any help would be appreciated gretly.

enter image description here

c#
asp.net
.net
iis
windows-server-2008-r2

2 Answers

0

"Not enough storage is available to complete this operation."

the apppool is actualy recyling it self after a certain amount of hits that is why this happens att diffrent times.

the problem could happen in two cases 1. there is no disc space. 2. you dont have access to create the tempfiles.

So have you actualy checked disc space on the webserver?

And does the user executing your apppool have access to temp folder within .Netframework folder? If the user is restricted to your appfolder you might have a problem.

answered on Stack Overflow Sep 16, 2014 by Thorarins
0

Microsoft IIS Forum link solved my issue. Enable x32 bit feature in IIS. But nowhere we are using any x32 bit component/dll. But this solved our problem.

answered on Stack Overflow Sep 17, 2014 by SaiKiran Mandhala

User contributions licensed under CC BY-SA 3.0