When I start my server, I have:
component = new Component();
// ...
component.start();
To shutdown a server, I assume I do:
component.stop();
However, the process doesn't stop. Should I then simply do:
System.exit( 0 );
?
- Paul

