Console Documentation

2001-09-19 Thread Cugier (extern)
Hello, I looking for some docuemntation about the Orion-Console. It looks like a useful grapgical tool to ease the administration of the orion server. Unfortunately so far I only found information about how to start the console. Does anyone know where I can find documentation of what I

Re: Tallest buildings... to be updated

2001-09-19 Thread Morten Wilken
please this is not the time or the place... if there ever will be a time and a place for this :-( - Original Message - From: srinivas [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Sent: Monday, September 17, 2001 5:46 AM Subject: Fw: Tallest buildings... to be updated

InitialContext: domain was null

2001-09-19 Thread Klaus Thiele
Hello, i'm trying to access some ejb's from my webapp on another orion-server. jndi_props.put(javax.naming.Context.INITIAL_CONTEXT_FACTORY,... jndi_props.put(javax.naming.Context.SECURITY_PRINCIPAL,... jndi_props.put(javax.naming.Context.SECURITY_CREDENTIALS,...

Re: InitialContext: domain was null

2001-09-19 Thread Eddie
This means that Orion isn't running the application you are trying to connect to. Make sure it's is running and that the names in the jndi property correspond to the name in the server.xml file. Ed - Original Message - From: Klaus Thiele [EMAIL PROTECTED] To: Orion-Interest [EMAIL

finder parameters

2001-09-19 Thread sergey
Please help me!!! Is there any possibility to pass order direcrtion as parameter of a finder? That is parameter string (asc or desc) is added to the end of SQL? Ex.: findAllSortedByState(asc); In orion-ejb-jar.xml: finder-method query= select * from SomeTable order by state $1

RE: finder parameters

2001-09-19 Thread The elephantwalker
Sergey, AFAIK order of the method params is the order of the wild cards $1 $2 etc. I do this all of the time. Go to the finder-method partial=false query=do the down an dirty with sql and my $1 card and $2 card should read do the down and dirty with sql an my asc card and desc card if the

RE: Which JAR do I need to run an external client app

2001-09-19 Thread SAURUGGER,PETER (A-PaloAlto,ex2)
In my case at least it is java:whatever-is-in-application-client.xml or orion-application-client.xml that's not available. Is there any other place to specify the jndi location for an ejb? Experimented with RMIInitialContextFactory as well without success. with the follwoing entry in

Stupid CLASSPATH and Oracle JDBC drivers. Need help!

2001-09-19 Thread Dan Lee
Hi All, I simply trying to get Orion to see my Oracle JDBC drivers!! I've placed my classes12.zip in the [ORION_HOME]/lib directory but it cannot see it. I've also tried previous posted suggestions of modifying the shell $CLASSPATH variable and the library path located in the application.xml

specifying many-to-many mappings in EJB deployment descriptor

2001-09-19 Thread Warren Hedley
Hi folks, I've just finished implementing a finder that can navigate across a many-to-many join table, by embedding a SQL statement in the deployment descriptor. This was based on Tim Drury's useful Advanced Finder Methods article on Orion Support ( http://orionsupport.com/articles/finders.html

RE: Stupid CLASSPATH and Oracle JDBC drivers. Need help!

2001-09-19 Thread Mike Fontenot
We had to put the Oracle jar/zip file into the JRE/lib/ext directory to be recognized on Win2K and solaris. We never figured out why this is the case. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Dan Lee Sent: Wednesday, September 19, 2001 10:44 AM

RE: Stupid CLASSPATH and Oracle JDBC drivers. Need help!

2001-09-19 Thread The elephantwalker
How do you start orion? should be java -jar orion.jar anything else may defeat the orion.jar class loader, which actually loads the *.jar and *.zip from the orion/lib directory. regards, the elephantwalker www.elephantwalker.com -Original Message- From: [EMAIL PROTECTED]

Re: finder parameters

2001-09-19 Thread Eddie
Yep, that is possible but not following the EJB spec. That is: the spec defines that the finder methods return a Collection which isn't ordered. However Orion returns a ArrayList (subclass of collection) which is ordered. So it's your lucky day, as indeed it is possible, but be careful when you

RE: Stupid CLASSPATH and Oracle JDBC drivers. Need help!

2001-09-19 Thread Mike Fontenot
Using: java -server -Xincgc -Xms70m -Xmx128m -jar ./orion.jar -out ./orion.log -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of The elephantwalker Sent: Wednesday, September 19, 2001 11:56 AM To: Orion-Interest Subject: RE: Stupid CLASSPATH and Oracle

AW: Stupid CLASSPATH and Oracle JDBC drivers. Need help!

2001-09-19 Thread Regele, Manfred
Ups, I had a similar problem with tomcat 4. I renamed classes.zip into classes.jar. Its the first time I read this with orion, though. Manfred Regele ADIG Investment GmbH 22 MethodenTools Richard-Reitzner-Allee 2 85540 Haar Tel: 089/46268-308 mailto:[EMAIL PROTECTED] http://www.adig.de

RE: Stupid CLASSPATH and Oracle JDBC drivers. Need help!

2001-09-19 Thread The elephantwalker
got it...you need to be in the orion directory, the lib directory is pointed to by a relative directory, so its looking at your starting directory/lib instead of orion/lib. I always navigate to the orion directory to start it... 'cause it always works. That could be it. Regards, the

JMS leaks !!!

2001-09-19 Thread Bruno Baloi
Here's a very inane question ! Has anyone experienced memory leaks with the Orion JMS server ?? I hooked up OptimizeIt to an instance of Orion and I saw three instance types run amock: com.evermind._dvb,com.evermind._eg,com.evermind._et. Bruno Baloi

RE: Which JAR do I need to run an external client app

2001-09-19 Thread David Libke
Peter, In getting my app-client running, I down loaded http://java.sun.com/dtd/application-client_1_3.dtd and found this statement: The ejb-ref-name element contains the name of an EJB reference. The EJB reference is an entry in the application client's environment and is relative to the

RE: Which JAR do I need to run an external client app

2001-09-19 Thread Khaled Alakhras
All you need is the orion.jar. Here is an example client: package com.test; import java.rmi.RemoteException; import java.util.*; import javax.naming.InitialContext; import javax.naming.NamingException; import javax.ejb.EJBException; import javax.ejb.FinderException; import

Re: Stupid CLASSPATH and Oracle JDBC drivers. Need help!

2001-09-19 Thread Michael J. Cannon
It's because of the search functions detailed here: http://java.sun.com/j2se/1.3/docs/tooldocs/findingclasses.html This was supposed to be deprecated in the various J2EE implementations and in the v.1.3 JDK, but it wasn't. Not Sun's fault, not Java's and certainly not Orion's or Oracle's. Keep

Re: AW: Stupid CLASSPATH and Oracle JDBC drivers. Need help!

2001-09-19 Thread Stephen Davidson
Greetings. I had to actually unpack the zip file, and repack the files using the jar tool. I am running Orion 1.5.2. -Steve Regele, Manfred wrote: Ups, I had a similar problem with tomcat 4. I renamed classes.zip into classes.jar. Its the first time I read this with orion, though.

Help me

2001-09-19 Thread nguyen dinh uong
I have to meet some error when I deploy /demo/ejb I hope You can help me First error .This is appear when I use java -jar orion.jar /*Auto-deploying product (No previous deployment found)... Error compiling file:/C:/orion/demo/ejb/product/: Error instantiating compiler: Javac not installed, copy

RE: Help me

2001-09-19 Thread Bansal, Kanchan B (MED)
Try setting deactivated =false in the principals.xml file under config dir of orion for username password as specified in the jndi.properties of Cart example. -Original Message-From: nguyen dinh uong [mailto:[EMAIL PROTECTED]]Sent: Thursday, September 20, 2001 4:58 PMTo: