1
vote
0answers
18 views

IIS 7.5 URL rewrite module and URL routing in Global.asax for sub-applications

I have a "top-level" web-site, www.ccesd.ac.uk, and various "lower-level" web-sites running off it such as www.ccesd.ac.uk/BritSocAt that are separate sites but share a lot of code. These lower-level ...
0
votes
1answer
67 views

IIS 7.5 Session times out at 30 minutes regardless of all other settings

We have a ASP.Net MVC Web Application that keeps timing out after exactly 30 minutes. In the web.config, I set the sessionState timeout value to 500 minutes. After 30 minutes, the session still ...
1
vote
2answers
234 views

Why aren't the Server and X-Powered-By headers being removed?

My ASP.NET 4.5 app is being deployed to shared hosting so I do not have access to IIS settings. To remove the X-Powered-By header, I specify in web.config: <system.webServer> ...
0
votes
0answers
48 views

System.NullReferenceException in context.Request.Url using VS development server

Need help... Im having 'System.NullReferenceException' error in this code: ((HttpApplication)sender).Context.Request.Url within Application_AuthenticateRequest It only happened after installing VS ...
0
votes
1answer
131 views

Getting username of last person visiting the site

I m really sorry for unclear question title but I am a bit confused about it myself. I m running my website on IIS and on the top its displaying the username of the user who is currently logged in. ...
1
vote
1answer
590 views

using PreSendRequestHeaders Event in global.asax

I tried to assign the PreSendRequestHeaders Event in the global.asax file in the "Application_Start" method. But this does not work. private void Application_Start() { PreSendRequestHeaders += ...
3
votes
1answer
976 views

IIS pool recycle, pool restart, app restart, web.config update - global asax

I have MVC3 web application running under IIS 7. During initialization in global.asax application scans all the assemblies returned by BuildManager.GetReferencedAssemblies(), and all the types ...
0
votes
2answers
367 views

Changing Global.asax variables from IIS

Can I change access or edit the values specified in Global.asax from IIS?? The reason is that I don't have the source code and the only change we need right now is to change the connection strings ...
3
votes
2answers
259 views

asp.net handler like mvc routing without mvc?

I used to build my web apps in asp.net in such there is only one page witch is default.aspx http://localhost/mywebapp1/?q=blog/posts/get/42 I do parse 'q' by myself and do all processing. I don't ...
2
votes
1answer
2k views

When is Application_End called in asp.net WebService

When exactly does the Application_End fire in the case of a WebService ?? I read (Application_End global.asax) that the Application_End is called everytime the application is unloaded. Does this mean ...
1
vote
0answers
297 views

Overlapped Recycle and Application_Start

I have an asp.net web app using AppFabric for distributed caching. On Application_Start I initialize my connection to AppFabric. This generally takes milliseconds which is perfectly acceptable. On ...
4
votes
2answers
571 views

How to Determine ASP.NET Application Domain Lifetime

We have an application gathering counter statistics and we would like the values to reset after executing the iisreset command and that's all. Microsoft says Application_Start is: Called when ...
0
votes
1answer
529 views

Application_Error event in Global.asax not firing when browsing .php extensions

ASP.NET global.asax Application_Error fires for all pages except .php extensions. On IIS: "Web Service Extensions" does have PHP set to allowed. I have the PHP isapi filter on the web site. I ...
1
vote
2answers
281 views

Why would I need WCF for building RESTful services?

I've recently discovered a way to implement RESTful services using Global.asax (by handling the Application_BeginRequest event). Basically, I am saying it is possible (and easy) to implement a RESTful ...
1
vote
4answers
188 views

How to keep images (and other files) out of ASP.NET Pipeline

How can I prevent certain file types from going through the ASP.NET Pipeline (hitting global.asax, etc.)?
2
votes
1answer
1k views

Application_BeginRequest is not being hit

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 ...
2
votes
2answers
3k views

Global.asax Application_Error doesn't work with Integrated Mode

Application_Error doesn't work with Integrated Mode but does work with Class Mode. I would to transfer request to error page using both Integrated Mode and Class Mode. Can this be done or I have to ...
7
votes
1answer
2k views

<machineKey decryptionKey=“AutoGenerate”… being ignored by IIS. Won't invalidate previous session's cookies

(See question below for more context): Are there any situations in which <machineKey validationKey="AutoGenerate,IsolateApps" decryptionKey="AutoGenerate,IsolateApps"/> in ...
1
vote
2answers
2k views

Global.asax events are not being raised

After deployment on IIS 6 methods declared in Global.asax (for Application Start, etc.) are not executed. The same code on IIS 5 works properly. What can be the reason? Is it the problem with ...
0
votes
1answer
242 views

Use of Global.asax in distributed approach ie Web garden

I understand the limitations of using application state and session state accross multiple application pools, that they cannot be shared. What about the Global.asax file is a single instace created ...
2
votes
3answers
4k views

what alternatives are there to using global.asax?

I am using my own custom authentication with IIS, and I want the server on every page load (no matter what type of file) to first check the Application variable to see if the user is authenticated and ...
5
votes
3answers
3k views

IIS Recycle Global.asax

Is it possible to catch an recycle event in the global.asax? I know Application_End will be triggered but is there a way to know that it was triggered by a recycle of the application pool? thx, ...
14
votes
2answers
11k views

Application_End global.asax

Can anybody tell me when Application_End is triggered in a lifecycle of an application? When all sessions are ended, will Application_End be triggered automatically? + Are there any other reasons why ...
1
vote
2answers
1k views

Error accessing the Cache in the Application_Start method of Global.asax

I am trying to access the Cache in the Application_Start method of Global.asax. I am trying to accdess Context.Cache. When I run the code from visual studio it works just fine but when I run it on the ...
7
votes
4answers
4k views

ASP.Net Session_Start event not firing

I have an ASP.Net 2.0 application in which the Session_Start event is not firing in my Global.asax file. Can anyone tell why this is happening and how I can get it working? The application worked ...