JNDI to EJB

2000-11-14 Thread Lee, Se Hee
Title: JNDI to EJB I can connect to the DataSource using the JNDI. But, I am having a problem with connecting to the EJB. It works fine with WebLogic, but I can't seem to figure out how to make it work.. Here is the steps that I performed. Please, someone point me to the direction as to

NameNotFoundException

2000-11-13 Thread Lee, Se Hee
Title: NameNotFoundException I am getting this error from Jsp.. Can someone point me to right direction? Here is my orion-ejb-jar.xml ?xml version=1.0? !DOCTYPE orion-ejb-jar PUBLIC -//Evermind//DTD Enterprise JavaBeans 1.1 runtime//EN http://www.orionserver.com/dtds/orion-ejb-jar.dtd

NameNotFoundException

2000-11-13 Thread Lee, Se Hee
Title: NameNotFoundException InitialContext ctx = new InitialContext(); // if (ctx == null) { out.println(Ctx is null); } else { out.println(CTX is not null); } Object obj = ctx.lookup(EBAddress); And here is the jsp code that I use to get the JNDI ref. Sorry for not putting it

Oracle RDBMS Setup

2000-11-10 Thread Lee, Se Hee
Title: Oracle RDBMS Setup How do I set up the Orion to work with Oracle? I am new to Orion (just downloaded) and try to make it to create DataSource with Oracle.. Does Orion comes with its own JDBC Driver for Oracle or should I should Oracle's driver? Thanks a lot for any comment and

DataSource setup

2000-11-10 Thread Lee, Se Hee
Title: DataSource setup Is there any way that I can verify the datasource setup once orion is running? Here is my datasource xml, but I don't know if it's binded correctly or not. Se Hee data-source class=com.evermind.sql.DriverManagerDataSource name=Oracle location=jdbc/modevdb

RE: Oracle RDBMS Setup

2000-11-10 Thread Lee, Se Hee
Title: Oracle RDBMS Setup can location have a same name? Your example seems to have a diferent name for location, xa-location, ejb-location, etc Thanks for your valuable info.. Se Hee -Original Message-From: Rob Lapensee [mailto:[EMAIL PROTECTED]]Sent: Friday, November

RE: Primary key in an EJB

2000-11-08 Thread Lee, Se Hee
Title: RE: Primary key in an EJB Table doesn't have to have a primary, but there should be column that uniques defines each row different. This usually is a primary key, but any index column should work... For these primary keys or index columns, you should create a proper primary key for it.