Re: Castor JDO + Orion

2002-01-19 Thread Christoph Sturm
Hello Roman, Its really easy. Just define your datasource in datasources.xml, and use it through jndi. database name=mydb engine=sql-server jndi name=jdbc/MyDS / mapping href=mapping.xml / /database hth chris Friday, January 18, 2002, 2:41:09 PM, you wrote: RS Hello , RS Does

Re: JavaMail problem

2001-10-16 Thread Christoph Sturm
Hello Justin, Tuesday, October 16, 2001, 10:48:20 AM, you wrote: JC I have set Exchange to disable relaying except for the IP address of the JC machine the appserver is on. The problem is I'm still getting the JC javax.mail.SendFailedException: 550 Relaying is prohibited error. You need to

ejb 2.0 relations in orion

2001-10-09 Thread Christoph Sturm
Hi all! I'm trying to get some cmp2.0 beans with relations running on orion 1.5.2. I have two beans: Article and Category, and a m:n relation between them. in CategoryBean.java i have: public abstract java.util.Collection getArticles(); and in ArticleBean: public abstract

Re: What's in 1.5.3?

2001-10-09 Thread Christoph Sturm
Hi, Since 1.5.3 is in beta, is there anywhere where we can find a list of the changes that will be present in 1.5.3? Where is 1.5.3 in beta?

Re: SV: ejb 2.0 relations in orion

2001-10-09 Thread Christoph Sturm
Hi Magnus! Hi. You currently need to have your CMR fields as cmr-field in ejb-jar.xml. That should fix your problem. What do you mean exactly? I have my fields defined as cmr-field can you tell my whats wrong with the snippet below? relationships ejb-relation

transactions and isolation levels

2001-08-31 Thread Christoph Sturm
Hello orion-Interest, Is there documentation on locking and isolation levels in orion somewhere? the docs are quite non existent: isolation - Specifies the isolation-level for database actions. The valid values are 'serializable', 'uncommitted', 'committed', 'repeatable_read'. Maybe some1 can

Re[2]: handling null values in finders

2001-08-09 Thread Christoph Sturm
Hello Simon, Wednesday, August 08, 2001, 11:37:59 PM, you wrote: SS Hi, SS It is not problem of mssql, it was defined in SQL 92 standard. There is SS special command in tsql SET ANSI_NULLS which controls this behavior. This SS command can be used as another workaround, if your jdbc driver

handling null values in finders

2001-08-08 Thread Christoph Sturm
Hey all! I am using mssql with orion, and my problem is that my finders dont find null values. The problem is that orion just generates a whereclause where x = null, and in tsql no instance of null equals another instance of null, so the correct where clause would be where x is null. I now

Re[2]: Fwd: file upload

2001-07-13 Thread Christoph Sturm
Hello Nick, Thursday, July 12, 2001, 5:57:56 PM, you wrote: NN Hi Christoph, NN Sending a file to the server is a specialized little job. The Orion server NN supplies some orion-specific classes to help (see www.orionsupport.com and NN search for 'upload'). Alternatively, I have written

Fwd: file upload

2001-07-12 Thread Christoph Sturm
resending cos it didnt appear on the list for 24 hours :) This is a forwarded message From: Christoph Sturm [EMAIL PROTECTED] To: orion-Interest [EMAIL PROTECTED] Date: Tuesday, July 10, 2001, 3:27:46 PM Subject: file upload ===8==Original message text=== Hello orion

Inheritance Problem, orion bug

2001-06-18 Thread Christoph Sturm
Hey all! I have an app with different article types, that are stored in different tables, and are represented by different cmp-entity-beans. All my remote-interfaces implement the same interface ArticleBase, which extends EJBObject. Then I have a main article table which stores refenrences to

Inheritance Problem, orion bug

2001-06-18 Thread Christoph Sturm
Hey all! I have an app with different article types, that are stored in different tables, and are represented by different cmp-entity-beans. All my remote-interfaces implement the same interface ArticleBase, which extends EJBObject. Then I have a main article table which stores refenrences to