Application_Start method called by ASP.NET once for the lifetime of the application domain, not for each HttpApplication instance. It called when the first resource (such as a page) in an ASP.NET application is requested.

learn more… | top users | synonyms

0
votes
0answers
26 views

JSON-based WebApi controllers called directly invoke 2 (nearly identical) HTTP requests

I have some ApiControllers in a .NET WebApi that return JSON to the browser. When I call these RESTful API's directly (rather than via jQuery in my web app) I'm seeing 2 virtually identical HTTP ...
1
vote
2answers
66 views

Cache or Application variable to store list of objects?

In my application, I read some xml files into a list of objects (List<Thing>) but I want to avoid having to hit the file system on each request. The data in the xml files rarely changes, so I'd ...
1
vote
3answers
70 views

What's the difference between the webrole onStart() event and Application_Start() global.asax event?

I'm just starting to get my feet wet learning the technical details of Azure, so apologies if this is a silly question. If I create a cloud service project in visual studio and add a webrole for an ...
4
votes
0answers
300 views

Application_Start does not respond to RegisterAllAreas()

I'm new on MVC Application, please help me. I have an Application on Visual Studio 2012 using Framework 4.0 on a Windows 7 pc and I'm debugging in IIS Express. Starting debugging, my application ...
1
vote
2answers
332 views

Access HttpContext in Application_Start ASP.NET MVC 4.0

I would like to access my host and build my bundles. I know it is not straight to access httpcontext in Application_start. Can you advise any other work around to find the Request.url.host in ...
1
vote
1answer
48 views

Register over-ridable ServiceStack service

We're using ServiceStack within a package that users install onto their Umbraco website. The tricky thing is the users need to be able to add additional methods specific to their implementation. I'm ...
1
vote
1answer
91 views

“Per request” activation context … without request

I have a repository that needs to be created per request. Now there is a singleton caching object that needs to use that repository to fill itself with data, but this object is initialized in the ...
1
vote
1answer
179 views

Call to Application_Start after starting application pool in IIS

I would like to know how can I setup the IIS, or the application if needed, for the next requirement: - When the application pool starts in IIS it should call to Application_Start in Global.asax I ...
0
votes
1answer
205 views

Open or create a text file every day on Application_Start and Append with requested web pages then close on Application_End

I have been tasked with running a simple audit that will record each and every page that has been requested by any user and store the data of the page and if access was granted or denied based on ...
1
vote
1answer
127 views

ASP.net beginner really confused about StaticObjects and how to declare it

I'm a beginner in ASP.net, i did some research about Application state. I know about declaring new application state inside the Application_start event. But when i looked inside MSDN library (which ...
0
votes
0answers
59 views

Way to ask IIS6 from Application_Start (ASP.NET) what the custom error settings are for 404?

I need to change the 404 error page on all of my sites to /Errors/FileNotFound.aspx. But I'd like to write some code that verifies that this is set correctly on the site. I am not talking about the ...
1
vote
1answer
44 views

Access HtmlHelper right after it is created, and before the view

I know that i from Application_Start can ActionFilterAttribute add a custom global filter and manipulate the ModelState and what not. Is there a similar way, to access the @Html (HtmlHelper) Before ...
1
vote
1answer
130 views

Can't get profile data in Application_Start

I have the following code at some point in Application_Start MembershipUserCollection users = Membership.GetAllUsers(); foreach (MembershipUser u in users) { ProfileBase profile = ...
0
votes
1answer
1k views

<IDENTITY IMPERSONATE=TRUE> & Application_Start event

So - after much research, it appears that the < identity impersonate=true > only works AFTER the Application_Start event fires. Does anyone know any workaround to this problem? I have an ...
0
votes
1answer
254 views

Global.asax Application_Start run on bin-folder update?

My question is quite simple.. What if I have an application.. and I start it, and then I assume that Application_Start will be hit.. But what if I during runtime add another assembly to the ...
2
votes
1answer
759 views

azure webrole Global.Application_Start is never called

I created a simple ASP.NET project and then added cloud deployment descriptor using Visual Studio. Once I do that, Application_Start() method in global.asax file never gets called. In my project, I do ...
0
votes
3answers
353 views

background thread in asp.net application

i run a background thread in Application_Start() in global.asax to use it like windows service but applicaton_end fire when all session is ended in my website i have a sms Business that work with ...
0
votes
1answer
903 views

Cmd window to close after opening process with .bat

i'm new with batch file and the code i'm using i had to find but it always opens cmd but doesn't close it after the program is open. I'm aware that it doesn't close because its a window process and ...
0
votes
1answer
419 views

Global.asax events not firing for IHttpHandler

I've written a C# HttpHandler in VS2010 and want to do some initialisation in the application_start() event (e.g. set up logging etc.), but for some reason it isn't firing. I've tried running against ...
1
vote
1answer
353 views

Azure Application_End not hit and Application_Start hits multiple times (a few minutes in between)

In my Azure environment I have a webrole with on the instances multiple websites. The Application_Start() method in global.asax in a WCF-project is called multiple times (a few minutes in between), ...
1
vote
1answer
168 views

Are these variables being garbage collected?

I am trying to get Quartz.net scheduler to work, but I don't know why it is not firing for jobs scheduled at a future date. I have tested with a cron trigger that fires every minute and it works (job ...
2
votes
1answer
427 views

StyleCop SP0100 error for Application_Start in Global.asax

Style cop will try to force you to take the underscore out of Application_Start in the Global.asax file in an mvc web application: SP0100: Method (general) name Application_Start doesn't conform ...
0
votes
1answer
267 views

ASP .NET Application_Start Event + Connection to a DB

I have started developing a full-web application by using the ASP .NET MVC 3 framework. I am a MVC 3 beginner developer. On the server-side I am going to execute some queries to a DB. Consequently I ...
1
vote
1answer
318 views

Sending web request from global.asax (Application_Start() method)

I have pretty weird question. In my ASP.NET MVC application I defined 1 Timer which is ticking every X minutes for purpose of doing some repeating task. First of all I know that this is not best ...
0
votes
1answer
528 views

How to Get BootStrapper.exe work in Windows Azure?

I download bootstrapper.exe from http://bootstrap.codeplex.com/, I manage to get it work in local IIS. At Application_Start() and use Process.Start() But at Windows Azure, not work at all. I am sure ...
3
votes
3answers
542 views

Thread safety on Application Start

I have an ASP.NET application in which I am writing this code in Application_OnStart event: public virtual void OnStart(HttpApplication httpApplication) { ...
5
votes
1answer
2k views

Application_Start ASP.NET

If get this from the Microsoft official documentation: The Application_Start and Application_End methods are special methods that do not represent HttpApplication events. ASP.NET calls them once ...
0
votes
3answers
450 views

ASP Pre-Caching with Application_Start Considerations

I am designing a web API which requires fast read only access to a large dataset which will be hopefully be constantly stored and ready for access. Access will be from a static class which will just ...
0
votes
2answers
692 views

Create multiple text files

what would be a neat way to create multiple *.txt files on application startup i.e check if they exist if not create them. I need to create about 10 text files. Will I have to do like this for every ...
1
vote
2answers
1k views

ASP.NET application_start event fired

I am working on an ASP.NET application and caching some reference data. The code to create the cache is invoked in the application_start event in global.asax. My problem is that the application_start ...
3
votes
1answer
554 views

Elmah log error in Asp.Net MVC Application_Start [duplicate]

Possible Duplicate: elmah: exceptions without HttpContext? In Global.asax public class MvcApplication : System.Web.HttpApplication { protected void Application_Start() { ...
0
votes
1answer
586 views

Application_Start not behaving correctly in ASP.Net 4.0 Application

I'm stumped. I ran through all the recommendations on StackOverflow and Google... no joy. My Application_Start method is not behaving correctly in my ASP.Net 4.0 application. I can set Application ...
6
votes
2answers
863 views

HttpUtility.UrlEncode and Application_Start

As per http://ayende.com/blog/4599/hunt-the-bug, I've run into one of those scenarios whereby "Response is not available in this context". Greatly simplified, the following throws an exception in ...
0
votes
1answer
336 views

Start Application_Start again on a shared hosting?

I am on a shared hosting plan using asp.net mvc 3. In my Application_Start I start my Quartz scheduler and have some jobs run. However some don't seem to be running or something is wrong in them(but ...
1
vote
2answers
595 views

ASP.NET MVC 3 + Unity injection of the Controller

Which event is the best for registering the types with Unity? I wish to do this iocContainer.RegisterType<ControllerA>(); iocContainer.RegisterType<ControllerB>(); so ...
0
votes
2answers
380 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 ...
6
votes
1answer
761 views

What happens if an unhandled exception is thrown in Application_Start?

... will the Application_Start method be ran again for the next request(s) or not? Does it depend on ASP.NET version, hosting server version and/or other context? I am trying to determine if it's a ...
1
vote
1answer
557 views

asp.net application start fire multiple times

I have an ASP.NET 4 application written in c# in visual studio 2010. I start a timer in application_start in Global.asax and I want it to start once but after logging application behavior I have ...
0
votes
3answers
612 views

Registering routes on session start not application start

I am trying to register the route collection in .net based on each session. The code I have works fine, you goto website/username and it loads the correct sub pages, but you have to restart the ...
0
votes
0answers
59 views

How to Recover from a temporary exception in ASP.NET 3.5 Application on IIS6?

Scenario: Database server is not running during application start. However it is starting soon afterwards. Global.asax' Application_Start does some initialization, loading stuff from database. This ...
0
votes
1answer
136 views

Linux : what is the order of execution of *.desktop files in autostartup

Need to launch two application on system startup. A desktop file is created starting the fist one. Unfortunately could not find any way to launch the two application in single desktop file. If there ...
0
votes
2answers
83 views

How to best debug the creation of unwanted threads in ASP.NET web application

After an IISRESET on my public facing webserver, the initialization of my app seems correct. That is, in the Application_Start event I launch a new "email" thread whose purpose is to sleep until the ...
1
vote
3answers
598 views

What code whould be placed in the application_start and the session_start events in global.asax?

Can you give an example of what might be best suited to place in the Application_Start and Session_Start subroutines? I know when each subroutine is called. Application_Start when the first user ...
4
votes
1answer
561 views

What is the best way to force an Application Start when an Application Pool is recycled?

I'm wondering if there is a way to automagically fire off an Application Start for a web site/application whenever the Application Pool for that site is recycled? Are there any canned solutions for ...
0
votes
1answer
1k views

Application_Start not called in global.asax. Why?

In my global.asax I have the following code: public static bool Was = false; protected void Application_Start(object sender, EventArgs e) { Was = true; } When I open a page and look at the Was ...
6
votes
2answers
1k views

Multiple Application_Start events firing

I am debugging an ASP.NET 2.0 application that is suffering from slow loading of the initial page. Through adding logging, I've found that the Application_Start event fires twice on startup with a ...
1
vote
1answer
274 views

Why would IIS “start” an App that is still running?

We have an ASP.NET (3.5 SP1) application running on IIS7 / Windows 2008. We trap Application_Start and Application_End events in Global.asax. We also host WCF services in the app and trap the ...
2
votes
2answers
291 views

Intermittant exception in Application_Start - how do I un-start the application?

In our Application_Start event handler we're performing some actions that intermittently fail due to file locking issues. In this scenario we would like to return the application to an "un-started" ...
1
vote
1answer
201 views

How to detect that the application start failed?

Our Situation: We have several webservers behind a loabalancer (Astaro Security Gateway). On the webservers we run an asp.net application and we have customerrorpages configured for 404 and 500 ...
-1
votes
2answers
603 views

How to start up your .NET program from web browser?

Could you provide example of JavaScript function for starting up application installed on your computer from a web browser (eg google chrome 4). It particular if .Net APPs have any special simplifying ...

1 2