I have an application server (Jboss but this also happens in Tomcat) running as a Service in Windows Server 2003.
It is running with the -Xrs flag.
The JAVA application running under the app server calls via JNI a customizable interface written in C++ (meaning we can alter this code) which references a third party DLL for processing images (Lincoln for converting PostScript, to be exact).
When we log into the server via remote desktop in console or admin mode (mstsc /admin or mstsc /console), when we logout, if the Lincoln DLL has been loaded, the application server will hear the logoff signal and the service process will immediately terminate.
I believe the signal is a CTRL_LOGOFF, but I could be incorrect. PLEASE CORRECT ME.
I was reading the following webpage to get an idea and apparently in UNIX, the signal handlers are passed to the DLL when the DLL is processing. This means that the DLL (Lincoln in this case) listens to and responds to the CTRL_LOGOFF signal.
JavaJiggle Article on Signal Handling
I believe, AND PLEASE CORRECT ME IF I AM WRONG, that I should be able to code a signal catcher in my C++ interface to the DLL to intercept the CTRL_LOGOFF before the DLL hits it and if so, then we won't be constantly dying when someone logs off of /console|/admin mode.
Here is what I need from you:
1) Please confirm or correct the signal that I am getting on console/admin logoff/logout.
2) Please tell me whether I can or cannot write a signal interceptor in the C++ interface.
3) Please help me understand how to code that signal interceptor or point me to some code that can. I have no clue how to do this. This is a 32-bit DLL.
Thank you in advance.
EDIT: I have found this article at Microsoft, which will help me answer this question.