1.

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.

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.



Discussion

No Comment Found