RE: [JBoss-user] How to develop Weblogic Startup Class like feature in JBoss 3.2? Please Help

2003-11-13 Thread Srinivas Malladi
:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2003 8:44 PM To: [EMAIL PROTECTED] Subject: [JBoss-user] How to develop Weblogic Startup Class like feature in JBoss 3.2? Please Help Hello All, I am desperately looking for some help in developing a JBoss Mbean to solve our application start

Re: [JBoss-user] How to develop Weblogic Startup Class like feature in JBoss 3.2? Please Help

2003-11-13 Thread David Ward
The MBean option would work, however if you need to implement startup/shutdown capability that is agnostic across app servers, may I suggest the following: In the Servlet 2.3 spec, ServletContextListeners were introduced. Implement one of those and enter it a war's web.xml file. Then add this war

Re: [JBoss-user] How to develop Weblogic Startup Class like feature in JBoss 3.2? Please Help

2003-11-13 Thread Andrew May
We migrated from WebLogic 5 to JBoss and changed our startup classes into Standard MBeans. It's possible to do many of the same kind of things start up classes allow you to do, such as creating/manipulating connection pools, all via JMX. If you implement a start() method in your MBean it will be

[JBoss-user] How to develop Weblogic Startup Class like feature in JBoss 3.2? Please Help

2003-11-12 Thread Sasidharan, Manoj
Hello All, I am desperately looking for some help in developing a JBoss Mbean to solve our application startup logic issue. We are moving from Weblogic 7.0 to JBoss 3.2. So looking for some way to implement the Weblogic Startup Class functionality in JBoss. Any help on this would be highly appre