SimpleSLSBLocal local = (SimpleSLSBLocal) ctx.lookup(localJndiName);
assertNotNull("Local bean is null", local);
// pass null to some params
local.printMultipleObjects("hello", 2, 2.2f, null, 3.2, new Double(4.4));
// pass null
local.printObject(null);
// pass null to all object params
local.printMultipleObjects(null, 0, 0.0f, null, 0.0, null);
}