public void testBasicCallableStatement() throws Exception
{
log.info("+++ testBasicCallableStatement");
InitialContext ctx = new InitialContext();
PreparedStatementHome home = (PreparedStatementHome) ctx.lookup("PreparedStatementBean");
PreparedStatementRemote bean = home.create("key2", "name2");
String result = bean.executeStoredProc("callIdentitySQL");
log.info("callIdentitySQL result="+result);
bean.remove();
}