Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an ASP.NET MVC (beta) application that I'm working on, and am having trouble figuring out if I'm doing something wrong, or if my Application_Start method in Global.asax.cs is in fact not firing when I try to debug the application.

I put a breakpoint on a line in my Application_Start method, and am expecting that when I attempt to debug the application that the breakpoint should get hit...but it never does. Not after I reset IIS, not after I reboot, not ever. Am I missing something? Why is this method never getting called? Any ideas?

share|improve this question
Does your global.asax page inherit from the global class that your method is in? – Isaac Cambron Mar 13 '09 at 1:25
If nothing helps, please, see my answer. – Dao Feb 11 '11 at 3:02

12 Answers

up vote 28 down vote accepted

If this is in IIS, the app can get started before the debugger has attached. If so, I am not sure if you can thread sleep long enough to get attached.

In Visual Studio, you can attach the debugger to a process. You do this by clicking Debug >> Attach to process. Attach to the browser and then hit your application. To be safe, then restart IIS and hit the site. I am not 100% convinced this will solve the problem, but it will do much better than firing off a thread sleep in App_Start.

Another option is temporarily host in the built in web server until you finish debugging application start.

share|improve this answer
7  
to expand - (in VS2010, using MVC 3 project type) right click web project > properties > web (tab) and make sure "Use Visual Studio Development Server" is selected radio button. Then your Application_Start breakpoints should be hit just fine. – MemeDeveloper Oct 5 '11 at 0:33
Thanks @MemoDeveloper !! It is superb !! – Praveen Prajapati Feb 2 at 20:44

Note : a nice easy alternative to using the inbuilt "Visual Studio Development Server" (e.g. because you are developing against IIS and have particular settings you need for proper functioning of your app) is to simply stay running run in IIS (I use the Custom Web Server + hosts file entry + IIS binding to same domain)

  1. wait for debugging session to fire up ok
  2. then just make a whitespace edit to the root web.config and save the file
  3. refresh your page (Ctrl + F5)

Your breakpoint should be hit nicely, and you can continue to debug in your natural IIS habitat. Great !

share|improve this answer
Worked for me, thanks! – Rory Aug 19 '12 at 16:58
Thanks a lot, Worked for me too. – Praveen Prajapati Feb 2 at 20:35
Did the trick, thanks :) – TabbyCool May 7 at 13:08

I'm too having problems with breakpoints in application_start with IIS a hosted app. A good workaround is using Debugger.Break(); in code instead of the VS breakpoint

share|improve this answer
1  
I belive that not hitting the breakpoint as something to do with running your app pool in integrated pipeline mode. Are you using that? – Flores Jan 5 '10 at 21:18

Try switching the managed pipeline mode for the app pool to "Classic" instead of "Integrated". That solved the problem for me. Looking into the reason now...

(Props for this answer belong to Flores (see his comment on his own answer), I just wanted to provide this as a separate answer to draw more attention to it)

share|improve this answer
Yes, it works. But if you assume that your application should work under integrated app pool, than it should be debugged under integrated pool too. – Karel Kral Sep 25 '12 at 8:44
My application also would not hit breakpoints after "F5" when I switched from Classic to Integrated. Did you ever discover why? I don't have any requirement to use Integrated, but it's discouraging when these things don't work for no explicable reason. – CodexArcanum Nov 26 '12 at 22:03

When you say "debug", do you mean actually launching the application from Visual Studio's built-in webserver for debugging, or do you mean attaching to the process in IIS? If it's the former, you should hit Application_Start, but if it's the latter, it can be difficult to be on the process early enough to catch it.

share|improve this answer
Correct, I do mean launching the app from VS. I have it hosted in IIS, so VS is attaching to that process. Are you saying that the event fires before before VS can attach to the process? – Bob Yexley Mar 13 '09 at 2:12

I have just the same problem. I have made a lot of renaming in my solution. After it I got two not working web-applications and several another web-applications were all right. I got error that I have wrong routes. When I have tried to setup break point in Application_Start method, and then restart IIS, VS didn't break execution. With workable web-applications break was working. Then I have recalled that "clean solution" and "rebuild" doesn't delete assemblies that left after renaming. And that was solution! I have manually cleaned bin directories of my buggy-web-applications and then saw new error in Global.asax Inherits="" attribute was referenced old dll. I have changed it on new and break began to work. Suppose that, during renaming Global.asax wasn't updated, and IIS took old assembly (with wrong routes) to start application.

share|improve this answer

I think the application start event only gets fired when the first request is made, are you hitting your website (i.e. making a request)?

share|improve this answer
Yes I am making a request to the application. – Bob Yexley Mar 13 '09 at 2:13

Make sure that your global.asax in not under a subdirectory. It has to be placed at root level into your project.

share|improve this answer

I had this issue in a .net 4 web forms vs2010 project and tried everything mentioned on this page. Ended up removing and adding global.asax actually resolved the issue for me.

share|improve this answer

We had a similar problem, where global.asax.cs was being ignored.

It turns out that the site was upgraded from a precompiled .NET 2 web site to a .NET 4.0 site. On the server, the PrecompiledApp.config file had not been deleted from the root folder. After deleting it, and recycling the IIS app pool and touching web.config to restart the application, code in Global.asax.cs started working fine.

share|improve this answer

Have you tried creating a new empty solution?

share|improve this answer
Sorry...I don't follow how that would help me? – Bob Yexley Mar 13 '09 at 2:14
Sorry, I mean empty as in a new vanilla MVC project without any of your own code. – Jonathan Parker Mar 13 '09 at 2:27

If you are using the System.Diagnostics.Debugger.Break(); workaround (which I think is just fine for temporary use) and it's "just not working" on your Windows 8 Machine. The reason is a bug in Visual Studio's "Just in time debugging".

The fix is as follows is to fix the key for the "Visual Studio Just-In-Time Debugger"

Open regedit and go to HKEY_CLASSES_ROOT\AppID{E62A7A31-6025-408E-87F6-81AEB0DC9347} for the ‘AppIDFlags’ registry value, set the flag to 0x8

More info here: http://connect.microsoft.com/VisualStudio/feedback/details/770786/just-in-time-debugging-operation-attempted-is-not-supported

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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