> I'd like to be able to force a core dump of a running java process in
> order to test the OnError handling.  Does anyone know how to
> accomplish this?

I'd probably use "jps -l" to identify the process and then "kill
<pid>" or "kill -9 <pid>" on *nix or "taskkill /pid <pid>" on Windows
to kill it. Not completely sure if that will trigger the OnError or
not, you'd need to try it and report back.

Wayne

-- 
You received this message because you are subscribed to the Google Groups "The 
Java Posse" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/javaposse?hl=en.

Reply via email to