I have a Website that is using .NET 1.1 app pool and then I also have a Virtual Directory within that website that is .NET 3.5. This Virtual Directory's contents are built with Visual Studio 2008 as a separate project.
When testing, everything works fine and all Global.asax events are hit and the app goes through the execution pipe line without any issues. When uploaded to the server with configuration described above, none of the Global.asax events are hit. (I have tested this by creating an Application level variable that I increment on BeginRequest - it's not being set or incremented).
Can anyone give me a clue as to why Global.asax events are not firing for the 3.5 application?
Thanks in advance.