Hi all, Can I have an object (say a hashtable), which can be accessed by several instances of an EJB, like this:
LocalTestHome testHome = new LocalTestHome(); LocalTest test1 = testHome.create(); LocalTest test2 = testHome.create(); test1.putHash(object1,key1); Object obj = test2.getHash(key1); //I want to have obj==object1 Is this possible? Thanks, Alex View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3850621#3850621 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3850621 ------------------------------------------------------- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your business? Tell us what you think of them. Give us Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more http://productguide.itmanagersjournal.com/guidepromo.tmpl _______________________________________________ JBoss-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-user
