CMP Entity Bean (addressbook) not deploying

2002-03-22 Thread Manish Jethani
I'm trying to deploy the addressbook example [http://www.orionserver.com/tutorials/orion-cmp-primer/] on my server. My data-sources.xml contains this entry: data-source class=com.evermind.sql.DriverManagerDataSource name=OracleDS location=jdbc/OracleDS

Re: CMP Entity Bean (addressbook) not deploying

2002-03-22 Thread Manish Jethani
Ray Harrison wrote: Are you by chance using the location attribute in the code somewhere - i.e. refering to jdbc/OracleDS? If so, use the ejb-location instead (jdbc/ejb/OracleDS). Thanks a lot. That solved my problem. I have another problem though. When I deploy my own app into orion,

Re: CMP Entity Bean (addressbook) not deploying

2002-03-22 Thread Ray Harrison
Did the information in the database get entered outside of the application? If so, cycle the app server to see if that fixes the problem (there's a flag you can set to eliminate that particular problem). If not, would you mind firing over the appropriate code snippets? (The place in your code

Re: CMP Entity Bean (addressbook) not deploying

2002-03-22 Thread Manish Jethani
Ray Harrison wrote: Did the information in the database get entered outside of the application? If so, cycle the app server to see if that fixes What do you mean outside of the application? The database is populated with some base data before the application can start doing anything. the