vote up 1 vote down star

In the bug fixing of a small ASP.NET/C# web app I have made, I have encountered an OutOfMemoryException.

There is no tips as to where to look as this is a compile time error. How can I diagnose this exception? I am assuming this is exactly where memory profiling comes into play? Any tips?

Thanks

flag

55% accept rate
1  
What exactly do you mean, it's a compile time error? Is the compiler throwing an OutOfMemoryException? – asgerhallas Apr 25 at 20:30
1  
A compile time out of memory would indicate that you've got some REALLY weird source code. The only way that I can think of in C++ to do that would be recursive include files (i.e. a.h includes b.h while b.h includes a.h) - does C# have some similar concept? You've basically got to be doing something that's causing the parse tree to blow up. – Michael Kohne Apr 25 at 20:40
Yes, the compiler itself is throwing the error. There is no ysod, but an error in the output window when attempting to debug. I think the culprit is I have a 3mb xml file which I parse (it has rss feeds) and then display in a custom rss feed reader. I closed the dev web server and got it sorted. – dotnetdev Apr 27 at 9:11

3 Answers

vote up 0 vote down

There's two things I can suggest here:

1) Maybe your machine is running out of memory. Check out some ideas on http://digioz.blogspot.com/2008/11/visual-studio-systemoutofmemory.html

2) Try compiling the project outside of visual studio using the VS Command line utility and run msbuild "SolutionfileName.sln". Does your it still crash then?

Hope that helps :)

link|flag
vote up 0 vote down

I hope you mean runtime error, and not compile-time error.

Typically this would happen if you have a list growing, which is saved in a static field or a system-wide ASP.NET container.

You can run the application in a profiler, like:

Red gate ants profiler

link|flag
vote up 0 vote down

Sorry above, but to me it has happened more than 3 times - Redgate broke either VS or the whole Windows ... Try this approach. I quess the root cause for your problem is weak debugging , check log4net. Also simple if ( DebuggingFlag == true ) Response.Write ( "DebugMsg" )

might be useful as simple and absurd it sounds ...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.