Re: Deployment platforms

2000-10-14 Thread Klaus Thiele
Mike Cannon-Brookes wrote: [...] 6. What has been your experience (stability, performance, managability, etc) - mainly of the underlying platform, not orion. Perfect, we've never had any problems with the OS or the DB (Sybase 11.0.3.3). Our only problem now is twofold: 1) Finding a way

Re: Problems with EJB and JNDI-context

2000-10-14 Thread Nils Frohberg
Hi, my problem was a mistake in the ejb-ref in web.xml. (i am also using "java:comp/env/ejb/user" now) --nils -- ** * Your mouse has moved. Windows must be restarted for the change to take effect. *

Problem deploying EJBs using a MySQL data-source

2000-10-14 Thread Nils Frohberg
Hi, up to now i always connected to the Hypersonic database. Since i have a mysql database running on another box, i tried to connect to it, using Shailesh Joshi's data-sources.xml and database-schemas/mysql.xml (cf. msg# 05137 Re: Orion and MySQL). This is the errormessage i get when orion

Entity bean ejb/entity/Autor autocreate table

2000-10-14 Thread Sven van 't Veer
Upon deploying my beans, my EntityBean AutorBean (jndi env/entity/Autor) tries to Autocreate the table Autor as create table env/entity/Autor. Is this standard behaviour, or is there an option in ejb-jar.xml to change this behaviour? sven --

javax.naming.NameNotFoundException

2000-10-14 Thread Sven van 't Veer
Orion can't find my deployed bean: java.rmi.RemoteException: com.evermind.server.rmi.OrionRemoteException: Transaction was rolled back: Error while creating session: java.rmi.RemoteException: javax.naming.NameNotFoundException: Autor not found in AutorFacade; nested exception is:

Re: Problem deploying EJBs using a MySQL data-source

2000-10-14 Thread Robert Krueger
the error message is quite explicit. what kind of datasource does 'jdbc/DefaultCoreDS' point to? is that the location you specified in orion-ejb-jar.xml for your entity beans? if so, did you map it to "jdbc/DefaultEJBDS"? I don't see it in your datasource declaration. robert At 17:13

Re: Entity bean ejb/entity/Autor autocreate table

2000-10-14 Thread Robert Krueger
check out orion-ejb-jar.dtd docs. you can change the table names to whatever you like. At 12:32 14.10.00 , you wrote: Upon deploying my beans, my EntityBean AutorBean (jndi env/entity/Autor) tries to Autocreate the table Autor as create table env/entity/Autor. Is this standard behaviour, or is

Re: javax.naming.NameNotFoundException

2000-10-14 Thread Robert Krueger
does AutorFacade have an ejb-ref to Autor? if not and you don't know why, I'd suggest reading up on these things. you're not going to have very much fun with orion without a basic understanding of these issues. orion is a very powerful but raw tool and it assumes a good working knowledge of

Re: Entity bean ejb/entity/Autor autocreate table

2000-10-14 Thread Sven van 't Veer
Robert Krueger wrote: check out orion-ejb-jar.dtd docs. you can change the table names to whatever you like. I knew that much, but that's created -after- deployment, and only if deployment was succesful. I was looking for a way to do this before deployment. sven --