I have a session bean that is deployed in an ear file controlled by someone else. I'm providing a web-app in the form of either a war file or ear file. I need to provide the ability to that session bean so that it can push data to an object that lives inside my war file. I was thinking of providing an ear file with inside it a war file for the web parts, and a sar file to provide an mbean which can be referenced from that ear file that that other person is managing. I have created mbeans before, but this time the data isn't processed by the mbean, but by an object (singleton accessed?) inside the war app. The war app in essence has to have free reign access to that object that is holding the data.
How do I bridge the gap between the session-bean and the object in the war app?