I created an EJB bean, and deployed it.
E:\work\orion>java -jar d:\java\orion\orion.jar
Auto-deploying ClassType... done.
Orion/0.9.4 initialized
Since I am not getting any error messages, I assume that everything went
fine. After this, I try to run the client to display the names of beans
bound to JNDI context (using Context.list). Here is what I see:
E:\work>java com.citysearch.ejb.ClassType.ClassTypeClient
Context: jdbc
Binding: DefaultPooledDS -->
com.evermind.sql.DefaultConnectionPoolDataSource
Context: xa
Binding: DefaultXADS --> com.evermind.sql.DefaultXADataSource
Binding: DefaultDS --> com.evermind.sql.ConnectionDataSource
Context: java:comp
Binding: ServerAdministrator --> Proxy0
Binding: Administrator --> Proxy1
Binding: ResourceFinder --> Proxy2
But I do not see the class I just deployed. I must be missing something.
Is there a configuration file which I am missing?
Thanks.
-AP_