919293949596979899100101
while ((line = br.readLine()) != null) { if ("STOP".equals(line.trim())) { server.stop(); jndiServer.stop(); namingInfo.stop(); System.out.println("Server stopped"); System.exit(0); } else
9596979899100101102103104105
134135136137138139140141142143144
jmsServer.stop(); System.out.println("Stopped the JMS Server"); // Step 12. Stop the JNDI server naming.stop(); jndiServer.stop(); System.exit(0); } } catch (Exception e) {