Tagged Questions
The application-shutdown tag has no wiki summary.
12
votes
1answer
9k views
Shutting down a WPF application from App.xaml.cs
I am currently writing a WPF application which does command-line argument handling in App.xaml.cs (which is necessary because the Startup event seems to be the recommended way of getting at those ...
9
votes
6answers
531 views
How to debug a crash that only occurs on application shutdown? (Delphi)
So, after some recent changes we discovered that one of our oldest applications is sometimes crashing on shutdown. This manifests itself either in the form of "Runtime error 216" messages or in a ...
7
votes
2answers
186 views
Is there a Delphi event that is guaranteed to be called when an app terminates but before any forms are destroyed?
I am using Delphi 6 Pro. I need an event that will fire when my application is definitely shutting down but before any Forms are destroyed. I thought about trapping WM_QUIT messages in the main form ...
4
votes
2answers
53 views
Register all interface instances to some global container
I need to shutdown alot of differently implemented threads which only have some Shutdown interface in common. I don't want to pass some global collection through the entire code and add newly created ...
4
votes
3answers
151 views
Controlled application shut-down strategy
Our (Windows native C++) app is composed of threaded objects and managers. It is pretty well written, with a design that sees Manager objects controlling the lifecycle of their minions. Various ...
4
votes
2answers
206 views
Intercepting java machine shutdown call?
Is there any way to get notified of JVM shutting down or System.exit call before the actual shutdown? I want this, so my application will be able to make a clean exit.
I realize that such thing is ...
4
votes
4answers
1k views
Determine exit status within the java shutdown hook thread
I would like to determine the exit status of the process during the shutdown hook runtime.
I want to have a logic which is based on the status code (0 or nonzero)
(ex: if zero do nothing else ...
4
votes
5answers
1k views
Prompt user to save when closing app
I'm writing what boils down to a document editor. When the application is closing, I need to prompt the user to save changes. This is easy enough. My question is when is it appropriate to not prompt ...
3
votes
1answer
529 views
notify View(Models) of closing the program
So I got my prism/mvvm/mef program running nicely along, the user is entering data in the application, then closes the application (or shuts down the computer).
How can I get my View(Model) notified ...
3
votes
2answers
973 views
Application.Current.Shutdown() doesn't
Title's about it. WPF app with some WCF stuff for IPC. I call Application.Current.Shutdown() and the app continues on happily. I thought Shutdown was supposed to be unstoppable.
Perhaps because ...
3
votes
4answers
580 views
How to turn off pc via windows API?
I never programmed a winapi so i have a little problem here .
I need turn off my pc from my application .
I found this example link text then i found this example how to change privileges link text
...
2
votes
2answers
46 views
Find, from a ShutdownHook, why a program exits
If I've got a Java program that can exit for various reasons, like:
because the main window, which is set to "exit on close", was closed
because there are some System.exit( 0 ) in the code
because ...
2
votes
2answers
123 views
How can I make sure a C# console program ALWAYS exits?
I've written a small C# console app that is used by many users on a shared storage server. It's runtime should always be < 3 seconds or so, and is run automatically in the background to assist ...
2
votes
2answers
126 views
How to find out which code calls an already unloaded module?
I got a typical access violation:
access violation at 0x4ebb7456: read of address 0x4ebb7456
This happens in a thread that is created when the rest of the program is already shutting down.
The ...
2
votes
2answers
827 views
Diagnosing IIS Shutdowns
Symptoms:
I attach a debugger, I wait a little while, it automatically detaches
I watch the event log during normal operation - after a single request comes in, it waits a little bit, the shuts down
...
2
votes
3answers
1k views
What is the correct way to add a Shutdown Hook for an Eclipse RCP application?
I have an RCP application that uses a connection to a in-memory database. There is one circumstance that, when shutting down windows, the application is killed without giving it a chance to close the ...
1
vote
1answer
50 views
What Directshow filter event can I use to unblock the source stream thread upon filter shutdown?
I have a DirectShow filter written in Delphi 6 using the DSPACK component library. It is a push source video filter. The filter blocks on an event that is signaled in another thread that generates ...
1
vote
4answers
224 views
contextDestroyed() vs addShutdownHook()
I'm currently implementing ServletContextListener and using contextDestroyed() to run cleanup tasks on my web application before it shuts down. However, I've been reading about how ...
1
vote
2answers
88 views
How to subscribe to application shutdown event in class library
There is a class library used by some application. It contains a class A for external usage with a static field of another private class B inside the library. User application uses instances of class ...
1
vote
6answers
140 views
How to save variables after application shut down?
I want to save some integers after application shut down and restore them after application opening, what is the easiest way to do this?
1
vote
2answers
232 views
Application.Current.Shutdown(-1) not closing WPF app
I am checking if the windows authenticated user is a valid user for my wpf application or not.
If not, I need to shut down the application; but even after executing Application.Current.Shutdown(-1) ...
1
vote
1answer
588 views
Is there a way to auto-power on the phone
I want to do a custom Timer app. I want it can start up and shutdown. I searched and found that starting it up needs root rights. Can anyone give me some clue to finish this?
Edit: in other ...
1
vote
3answers
90 views
C#: In a finalizer, how to find out if the application is shutting down?
I have a finalizer that seems to always fail during application shutdown. I think this is because it's holding onto some native resources that are no longer valid at that point. Is there a way to ...
1
vote
2answers
182 views
I want to check open applications before turn off my computer through java program
Actually I am working on a java based application which has a functionality to turn off my system on a specific time and it's working fine but, the requirement says that if any application is open ...
1
vote
2answers
143 views
Windows Shutdown Cancel - restart application that has closed
I have an application that stops when the shutdown event is received but this application needs to be continuously running in the user session. If there are programs preventing shutdown and then the ...
1
vote
1answer
177 views
NSUserDefaults Help
I need to save a NSMutableDictionary in NSUserDefaults. I have searched the web for many examples, but have not received any ones that are relevant enough. Can somebody post a small piece of code ...
1
vote
1answer
278 views
Python - How to detect when user closes a console application via “X” button
I currently have a Console based python program running under windows. The program maintains most of its data in memory and periodically saves the data to disk, or when the user shuts the application ...
1
vote
3answers
633 views
How to implement thread pool that will automatically shutdown at end of execution?
I'm writing a Java client which could theoretically be used in a different environment: Java main(), in a servlet container, or via dependency injection.
The client implements internal connection ...
1
vote
4answers
406 views
Detect Application Shutdown in C# NET?
I am writing a small console application (will be ran as a service) that basically starts a Java app when it is running, shuts itself down if the Java app closes, and shuts down the Java app if it ...
1
vote
1answer
248 views
Random, unexpected shutdown of an asp.net mvc 2 application hosted on aspnix shared hosting
I have a very simple mvc 2 application hosted on the shared hosting platform at aspnix http://www.aspnix.com.
Some times users lost authentication (I use the standard membership provider) during the ...
1
vote
0answers
514 views
applicationShouldTerminate: and cleanup during app termination
I'm looking are some CrashReporter logs for my Cocoa/MacOSX application and it looks like the reason for the crash is that some cleanup I expect to perform in the [applicationShouldTerminate:] method ...
1
vote
3answers
486 views
How to call event before Environment.Exit()?
I have a console application. If something goes wrong i need to call Environment.Exit(); to close my app.
I need to disconnect and close some files before my application ends.
In Java i can implement ...
1
vote
3answers
560 views
Shutdown exception handling for Win32/C++
I have a process that handles exceptions great. It calls:
_set_se_translator(exception_trans_func);
SetUnhandledExceptionFilter(UnhandledExceptionFilterHandler);
...
1
vote
4answers
2k views
Is there a C++ function to turn off the computer?
Is there a C++ function to turn off the computer? And since I doubt there is one (in the standard library, at least), what's the windows function that I can call from C++?
Basically, what is the ...
1
vote
5answers
4k views
WPF application is not closing correctly
I am calling Application.Current.Shutdown method from class that is binded to xaml windows with objectdataprovider, but the application is not closing, can anyone help me to understand why? And i ...
0
votes
1answer
46 views
Caliburn.Micro App does not Exit when Window is closed
Sigh,
I know I have seen this before and can't for the heck of it remember what the resolution was.
The application keeps running even though I close the only window. The Application.Exit event is ...
0
votes
1answer
95 views
Prevent shutdown after shutdown hook
So, I should handle Ctrl-C. Ok, I can do that by registering a shutdown hook. And it works well until I want to prevent the shutdown. When Ctrl-C pressed I want to ask the user if he really wants to ...
0
votes
1answer
48 views
Workaround for non-compliant JVM not sending WindowClosing events
Apple JVM on various OS X version have apparently been broken in that they do not generate the WindowClosing event when they should (for example if you close an app's main JFrame using by clicking on ...
0
votes
1answer
51 views
Possible causes of an java application server's instance sudden shutdown
Given that I'm developer and knowledge of app servers is scoped to the basics such as deploying, declaring / mapping resources.
My first step is to investigate the app and server logs (sysout and ...
0
votes
1answer
351 views
setOnClickListener - application stopped unexpectedly
As soon as I use setOnClickListener for a button in my code, when I start the application it says the application has stopped unexpectedly
package example.khumbayatabbed;
import ...
0
votes
0answers
76 views
Diffferent logic for App shutdown and OnSessionEnding
I have an WPF App that I want to add a confirmation dialog on App_ShutDown, but I don't want the dialog to show if the user is logging off or shutting down (OnSessionEnding). I know App_ShutDown gets ...
0
votes
1answer
215 views
Java - Objects are not “garbage collected” at the end of the program?
public class Main {
public static void main(String[] args) throws InterruptedException {
ClassA a = new ClassA();
a = null;
//Runtime.getRuntime().gc();
...
0
votes
2answers
491 views
What does WIX's CloseApplication functionality do and how would can the application respond to such a signal
In the WIX setup I've got, when upgrading the application I have set a requirement to close down applications which might hold on to files which needs to be updated:
<util:CloseApplication
...
0
votes
2answers
375 views
How to interrupt Eclipse RCP shutdown
I have a plugin into an eclipse rcp application. I need to detect a scenario whenever a particular perspective is closed or if the application is closed and based on the outcome, I may need to cancel ...
0
votes
1answer
485 views
How to properly quit application, call exit(0)?
I'm not sure which is the right way, right now I'm just calling exit(0) when a user clicks on the exit button.
0
votes
2answers
383 views
jna call to kernel32.CreateToolhelp32Snapshot in shutdown hook crashes the VM
If a thread sets a shutdown hook using
Runtime.getRuntime().addShutdownHook();
calls via jna the method:
kernel32.CreateToolhelp32Snapshot (0x00000002, 0)
it crashes the VM.
If I call the same ...
0
votes
2answers
407 views
Can a shutdown hook rely on another thread?
In a shutdown hook method, I need it to send a message to another process to say it has shutdown. My current message handling code requires that the message be written into a queue, this queue is ...
0
votes
1answer
540 views
If unhandled exception happens I need to shutdown the WPF Application?
I have a WPF Application basically the exe is a loader for the application UI and sometimes when a unhandled execption occurs the message box is shown and when I click ok it goes away,the UI vanishes ...