Hi,
I would suggest whatever code is there in your init() method ,
put in your MDBS ejbCreate(). So whenever the application will startup
it will do the intialization thing for you. efine a static variable in any of your singleton class say count,And in the
ejbCreate(){
if(SingletonClass.StaticVariable ==1){
put the init code here
SingletonClass.StaticVariable++
}
}
----------------------------------------------------------------
If this will not work then at the startup from ejbCreat() you can post a message to the MDB itself which can call any heper class method that can do the housekeeping for you.