How do I use a startup class to initialize and later reference JMS objects?

Submitted by: Administrator
You can use a shutdown class that does something like the following: JMSobject WLSobject = null; try { WLSobject = JMSStartUp.getJMSobject(); WLSobject.JMSCleanup(); } catch(Exception e) {} Servlets can provide a nice solution to provide both initialization and cleanup.
Submitted by: Administrator

Read Online BEA Weblogic Job Interview Questions And Answers