views:

26

answers:

1

I have a Visual Studio 2008 project that is proving difficult to debug. I need to attach to IIS 7 to debug it. At least 50% of the time I get the following error shortly after attaching to w3wp.exe:

---------------------------
Microsoft Visual Studio
---------------------------
A fatal error has occurred and debugging needs to be terminated.
For more details, please see the Microsoft Help and Support web site.
HRESULT=0x8007000e. ErrorCode=0x0.
---------------------------
OK   
---------------------------

It then terminates w3wp.exe.

I don't get this problem with any other solution. Any ideas on how to fix this please?

+2  A: 

If you Google this error you'll find a lot of information about it.

0x8007000e = The application is out of memory. Perhaps your computer does not have enough RAM and/or disk space.

jojaba
Just to add, this link http://connect.microsoft.com/VisualStudio/feedback/details/296622/fatal-error-debugging-hresult-0x8007000e might be relevant as well
InSane
There were at least 20 projects in the solution and while I didn't think this was the issue, unloading a whole heap of them and restarting seemed to fix it. Thanks!
Alex Angas