* @exception Exception Description of Exception
*/
public void testMultiInvokers() throws Exception
{
InitialContext ctx = new InitialContext();
SimpleBMPHome home1 = (SimpleBMPHome)ctx.lookup("SimpleBMP");
SimpleBMPHome home2 = (SimpleBMPHome)ctx.lookup("CompressionSimpleBMP");
SimpleBMP bmp1 = home1.create(1, "bill");
SimpleBMP bmp2 = home2.findByPrimaryKey(new Integer(1)); // should find it.
getLog().debug("");
getLog().debug("bmp1 name: " + bmp1.getName());
getLog().debug("bmp2 name: " + bmp2.getName());
getLog().debug("setting name to burke");