Re: starting orion application server

2001-10-09 Thread yilmaz
though in my last email i misspelled it , the directory name i created is correct (persistance, right?) cheers... - Original Message - From: Mark Bernardinis [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Tuesday, October 09, 2001 7:02 AM Subject: Re: starting orion

RE: Problem using custom tags.

2001-10-09 Thread Johan Fredriksson
inline -Original Message- From: E Stones [mailto:[EMAIL PROTECTED]] Sent: den 8 oktober 2001 14:01 To: Orion-Interest Subject: Problem using custom tags. The following example is taken from Chapter 2 of Advanced Java Server Pages by David M. Geary I'm getting this error when I try to

RE: Query help please ??

2001-10-09 Thread Owen Fellows
This might seem like a stupid suggestion but try changing the order you pass the parameters in so the number of records you are retrieving is first and the id is second. If you look at the generated queryit uses P1 and P2 and if they standard for parameters they are the wrong way around.

RE: starting orion application server

2001-10-09 Thread fredrik . bromee
Hi! The directory name should be persistence with an e. I don't know if this is the correct spelling of the word, but that's what my Orion directory is called ;) (In my case: E:\orion\persistence ) HTH, Fredrik Bromee -Original Message- From: yilmaz [mailto:[EMAIL PROTECTED]] Sent:

Re: Query help please ??

2001-10-09 Thread Eddie
Hellu, I solved it. Appearantly you can't give an argument to the top command of Ms SQL. I solved ti through SET ROWCOUNT. Eddie - Original Message - From: Eddie To: Orion-Interest Sent: Monday, October 08, 2001 8:52 PM Subject: Query help please ?? Hellu,I

Re: starting orion application server

2001-10-09 Thread Mark Bernardinis
i actually spelled mine persistence and it worked. i had the same problem when i first installed on a win32 system and i just created the directory and it worked upon loading up the second time. the file that is called transaction.state does not need to be created (in my instance). i am using

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

FW: How to get the RoleManager

2001-10-09 Thread David Potts
I'm resending this as it hadn't appeared on the list after 5 hours :-) Dave. -Original Message- From: David Potts Sent: 09 October 2001 09:00 To: '[EMAIL PROTECTED]' Subject: How to get the RoleManager Hello, Does anyone know if/how to get the RoleManager for an

RE: Multiple data sources for each application

2001-10-09 Thread Doshi, Gunjan
I believe it is at the server level. I put all the datasource declarations in data-sources.xml file in config directory and it works great. I never tried using the global datasource.xml file Gunjan -Original Message- From: Setlur, Atul (MED) [mailto:[EMAIL PROTECTED]] Sent: Monday,

Re: ejb 2.0 relations in orion

2001-10-09 Thread Ray Harrison
Orion only supports a partial ejb2.0 spec - an older one at that. I don't believe it supports many-many out of the boxmore ejb2.0 coming up! --- Christoph Sturm [EMAIL PROTECTED] wrote: Hi all! I'm trying to get some cmp2.0 beans with relations running on orion 1.5.2. I have two

RE: What's in 1.5.3?

2001-10-09 Thread Juan Lorandi (Chile)
Orion 1.5.3? Yeah? Where? Usually alongside the .jar there's a changes.txt describing... err... the _changes_. Still, the current bleeding edge version is 1.5.2 -Original Message- From: Brendan McKenna [mailto:[EMAIL PROTECTED]] Sent: Martes, 09 de Octubre de 2001 6:47 To:

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: Multiple data sources for each application

2001-10-09 Thread Jeff Hubbach
It's at the application level. You specify a data-sources.xml file in the orion-application.xml, and this can be a different data-sources.xml file for each application. Jeff. On Tue, 09 Oct 2001 09:46:52 -0400 Doshi, Gunjan [EMAIL PROTECTED] wrote: I believe it is at the server level. I put

RE: Problem implementing Custom User Management using SimpleUserManager

2001-10-09 Thread SAURUGGER,PETER (A-PaloAlto,ex2)
I have not tried this yet, but it just occurred to me that the naming.principal is just establishing the jndi security context - it does not do a login. If you want to login, you have to first establish the context with an account in principals.xml, and then use RoleManager.login(...) to login

SV: ejb 2.0 relations in orion

2001-10-09 Thread Magnus Rydin
Hi. You currently need to have your CMR fields as cmr-field in ejb-jar.xml. That should fix your problem. WR -Ursprungligt meddelande- Fran: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]For Ray Harrison Skickat: den 9 oktober 2001 16:37 Till: Orion-Interest Amne: Re: ejb 2.0

Re: What's in 1.5.3?

2001-10-09 Thread Patrick Lightbody
You can find the new orion.jar in 'private'. That's all I'll say... It will be released very soon I'm sure. I haven't found any changes.txt file though, so I can't tell you what is new. -Pat At 05:52 PM 10/9/2001 +0200, you wrote: Hi, Since 1.5.3 is in beta, is there anywhere

RE: Problem implementing Custom User Management using SimpleUserManager

2001-10-09 Thread Reason
I will be interested to hear from anyone with experience in this; I'm developing an application at the moment that will be relying on a cusomter user manager. Indeed, the apparent simplicity of implementation is why I picked up on Orion. So any bumps in the road would be nice to note in advance.

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

RE: How to get the RoleManager

2001-10-09 Thread Mike Cannon-Brookes
Dave, I have a feeling if you made app2 the parent app of app1 it might work (they'd probably be the same RoleManager - can't confirm that though). This is a non-standard solution (if a solution at all! ;)), then again if you're using RoleManager you're already using Orion specific code so you

RE: Multiple data sources for each application

2001-10-09 Thread Setlur, Atul (MED)
Steve, Do you know if CMP Entity Beans deploy if the connection pool is established programatically? Because in this approach the connection pool is established, after the EJB jars have been deployed. Thanks, -Atul -Original Message- From: Stephen Davidson [mailto:[EMAIL PROTECTED]]

Q:Difference between RMIInitialContextFactory and ApplicationInitialContextFactory

2001-10-09 Thread Andy Tael
Hi all geeks,can someone explain to me (in detail) the difference between RMIInitialContextFactory and ApplicationInitialContextFactory ? Also, what will the provider URL be if I deploy an EJB.JAR in the global application ? Thanks, Andy

RE: Problem using custom tags.

2001-10-09 Thread Shields James
Could someone managing this list stop these messages? I've had about 200 of them, and I'm getting a bit pied of. -Original Message- From: Johan Fredriksson [mailto:[EMAIL PROTECTED]] Sent: 09 October 2001 09:59 To: Orion-Interest Subject: RE: Problem using custom tags. inline