BEA Weblogic Question:
Download Questions PDF

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

Answer:

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.

Download BEA Weblogic Interview Questions And Answers PDF

Previous QuestionNext Question
What is error ORA-6502?Which of the following statements are true regarding MDBs (Message Driven Beans) on version 6.0 of WebLogic App Server?