* DMB: Calling this now causes an error as the "entity" table doesn't exist yet
*/
public void _test04_isIdentical_cmp(){
try{
final String jndiName = "client/tests/entity/cmp/EncBean";
EncCmpHome ejbHome2 = null;
EncCmpObject ejbObject2 = null;
final Object obj = initialContext.lookup(jndiName);
ejbHome2 = (EncCmpHome)javax.rmi.PortableRemoteObject.narrow( obj, EncCmpHome.class);
ejbObject2 = ejbHome2.create("isIdentical test");
//System.out.println("_______________________________________________________");
//System.out.println(" ejb1 "+ejbObject);
//System.out.println(" ejb2 "+ejbObject2);
assertTrue( "The EJBObjects should not be identical", !ejbObject.isIdentical(ejbObject2) );