Tagged Questions
The application-start tag has no wiki summary.
17
votes
4answers
5k views
How can I use Server.MapPath() from global.asax?
I need to use Server.MapPath() to combine some files path that I store in the web.config.
However, since Server.MapPath() relies on the current HttpContext (I think), I am unable to do this. When ...
6
votes
2answers
720 views
How can you hook a SharePoint 2007 feature into the Application_Start of a site?
I was wondering if there is a good way to hook into the Application_Start of a SharePoint 2007 site when developing a feature? I know I can directly edit the Global.asax file in the site root, but is ...
5
votes
2answers
299 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 ...
5
votes
2answers
347 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 ...
4
votes
1answer
167 views
Does Application_Start block all incoming requests
I have some code that initializes a static singleton class, which is needed by all requests. Therefore I thought I could add it to global.asax Application_Start. Can I be 100% sure that all requests ...
4
votes
2answers
1k views
log4net Configuration for console app
can anyone suggest how to configure the log4net for an console app?
Or at least how/where to catch the Application_Start event? (It seams that some calls are required at this moment)
Thanks in ...
4
votes
1answer
811 views
Application_Start works fine on workstation, is not called when deployed
I have an application that works great on my development workstation but fails when the application is deployed to the live environment. It seems that Application_Start is not being called in the ...
2
votes
3answers
85 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)
{
...
2
votes
1answer
128 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 ...
2
votes
1answer
240 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 ...
2
votes
1answer
141 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 ...
2
votes
4answers
1k views
Why does Application_Start run in Cassini but not in IIS7?
I have an ASP.NET 3.5 sp1 app that's in development in Cassini. The app includes a global.asax file that should run some code - it works fine in Cassini but in IIS the debugger never hits the ...
1
vote
2answers
194 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 ...
1
vote
1answer
198 views
Elmah log error in Asp.Net MVC Application_Start
In Global.asax
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
...
1
vote
2answers
297 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 ...
1
vote
1answer
353 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 ...
1
vote
2answers
223 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 ...
1
vote
1answer
172 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 ...
1
vote
2answers
172 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
117 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
vote
2answers
566 views
get keydown on application/form load in vb.net
I want to able to hold a key down while the application is loading and depending on which is being held down a certain form is shown.
For example holding down shift and the opening itunes opens a ...
1
vote
3answers
3k views
Stop execution of ASP.NET application
In my Application_Start() method, how can I stop the execution of the ASP.NET application when certain conditions are not met?
Throwing an exception doesn't appear to work.
0
votes
1answer
24 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 ...
0
votes
1answer
63 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
107 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 ...
0
votes
3answers
91 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
131 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 ...
0
votes
1answer
312 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 ...
0
votes
1answer
215 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 ...
0
votes
2answers
159 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 ...
0
votes
3answers
310 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
43 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
70 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
69 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 ...
0
votes
1answer
514 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 ...
-2
votes
2answers
266 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 ...