RE: URGENT! JNI problem on Orion-Could Not Get Class for Java ....

2001-10-04 Thread The elephantwalker
YiYi, see my answer on www.elephantwalker.com, should fix your problem. regards, the elephantwalker www.elephantwalker.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of YiYi Mao Sent: Wednesday, October 03, 2001 4:35 PM To: Orion-Interest Subject:

Aliases in Orion

2001-10-04 Thread Juan Fuentes
Hi list! Does orion have any tag like the Apache's Alias?? Thanks -- ·· Juan Fuentes Nieto Essi Projects [EMAIL PROTECTED]t +34 977 221 182 http://www.essiprojects.com f +34 977 230 170

Orion Server with external webserver

2001-10-04 Thread Fredrik Gusting (PAC)
Hi all I've trouble with my connection from my Tomcat webserver to Orion server. In tomcat have set upp a servlet which takes a request from a browser and then do a lookup for my orionserver that contains a small example of an entitybean that simple returns the current time. I've setup

RE: Orion Server with external webserver

2001-10-04 Thread The elephantwalker
its the port...the ormi port is 23791, not 80. regards, the elephantwalker www.elephantwalker.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Fredrik Gusting (PAC) Sent: Thursday, October 04, 2001 12:38 AM To: Orion-Interest Subject: Orion Server

RE: Protocol violation w/ Oracle

2001-10-04 Thread Gavin Spurling
I would guess you're using (or have in your classpath) classes111.zip. Make sure your using classes12.zip (I'm assuming your using Oracle 8.16, or 8.17). Gavin. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Chad Cromwell Sent: 03 October 2001 16:57

AW: Orion Server with external webserver

2001-10-04 Thread t . hegyi
Hi, h.put(Context.PROVIDER_URL,ormi://localhost:80/time); Make sure that the RMI port is correct. The default is not 80, but 23791. Check your orion dir/config/rmi.xml file for the port setting. If nothing is specified, use 23791 (or nothing) instead of 80, like

RE: Orion Server with external webserver

2001-10-04 Thread Hanlan, Dominic - Senior Developer
Is Admin enabled in principles.xml -Original Message- From: Fredrik Gusting (PAC) [mailto:[EMAIL PROTECTED]] Sent: 04 October 2001 08:38 To: Orion-Interest Subject: Orion Server with external webserver Hi all I've trouble with my connection from my Tomcat webserver to Orion server. In

RE: Orion Server with external webserver

2001-10-04 Thread Fredrik Gusting (PAC)
Hi Thanks It still seems to be problems. java.lang.NoClassDefFoundError: javax/security/auth/login/LoginException at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:199) at

Re: Aliases in Orion

2001-10-04 Thread Juan Fuentes
Juan Fuentes wrote: Hi list! Does orion have any tag like the Apache's Alias?? Maybe using the virtual-directory tag ?? Thanks -- ·· Juan Fuentes Nieto Essi Projects [EMAIL PROTECTED]t +34 977

RE: Aliases in Orion

2001-10-04 Thread Mike Fontenot
In the orion-web.xml file, something like this: virtual-directory virtual-path=/reports real-path=/usr/develop/reports / THis file is in the application-deployments/default/defaultWebApp directory -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On

RE: Orion Server with external webserver

2001-10-04 Thread Fredrik Gusting (PAC)
Hi The generated principes.xml (in orion/application-deployments/time)is empty though but that should be empty i think. Ther is nothing I can do about it. My principles.xml in orion/config. looks like this. This should be correct or ? ?xml version=1.0? !DOCTYPE principals PUBLIC

Deployment performance

2001-10-04 Thread Alex Bairov
Hello, We are deploying .ear containing 12 ejb .jars and 1 .war. It takes 3 minutes to deploy, even if I have changed only one .jar. Could I speed this up somehow? -- Best regards, Alex Bairov

RE: How to access Orion EJBs from C++ ?

2001-10-04 Thread Alex Paransky
There is no direct way that I know of, however, there are a lot of indirect ways. For example: 1. Wrap a JSP/XML layer around the beans, so that you can submit requests via http, this providing a WEB service type of an approach to your interface. You can then use HTTP from C to execute calls.

RE: Help with HTTP Internal Server Error

2001-10-04 Thread Alex Paransky
Disable IE's friendly error messages, then you should see a stack trace... -AP_ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Thursday, October 04, 2001 7:09 AM To: Orion-Interest Subject: Help with HTTP Internal Server Error

RE: Orion Server with external webserver

2001-10-04 Thread Khaled Alakhras
Try the following context factory: h.put( Context.INITIAL_CONTEXT_FACTORY,com.evermind.server.rmi.RMIInitialContextFactory ); I have some sample clients that work OK with this. Good Luck, Khaled --- Fredrik Gusting (PAC) [EMAIL PROTECTED] wrote: Hi Thanks It still seems to be problems.

RE: Deployment performance

2001-10-04 Thread Komal Kandi (Contractor)
Try with jikes it will be help u speed up deployement. -Original Message- From: Alex Bairov [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 04, 2001 9:36 AM To: Orion-Interest Subject: Deployment performance Hello, We are deploying .ear containing 12 ejb .jars and 1 .war. It

Re: Deployment performance

2001-10-04 Thread Stephen Davidson
Alex Bairov wrote: Hello, We are deploying .ear containing 12 ejb .jars and 1 .war. It takes 3 minutes to deploy, even if I have changed only one .jar. Could I speed this up somehow? -- Best regards, Alex Bairov Hi Alex. When you do your builds, make sure that your

EJB Primary Key of int

2001-10-04 Thread Marc Rabil
I can not figure out how to get Orion's EJB CMP to work when the primary key is an 'int'. In the deployment descriptor (ejb-jar.xml), the code is: prim-key-classint/prim-key-class When starting up Orion, I get: Class 'int' not found Any help will be greatly appreciated, Marc

EJB Workings Question

2001-10-04 Thread Nusairat, Joseph F.
Title: EJB Workings Question I am trying to figure out why i am getting marshalling exceptions in preparing hte bean insteance. And was wondering could someone explain the order things go in so i can attempt to figure out whats happening Like if i do a set from a servlet to an entity bean

Re: EJB Primary Key of int

2001-10-04 Thread Nick Newman
int is not a valid primary key - it has to be an object, not a primitive. Use Integer instead. Nick At 04:56 PM 10/4/01 -0400, you wrote: I can not figure out how to get Orion's EJB CMP to work when the primary key is an 'int'. In the deployment descriptor (ejb-jar.xml), the code is:

Date conversion problem ??

2001-10-04 Thread Ed Bras
Hellu, I retrieve a datetime field from the Ms SQL server. With a win sql client I see: 2001-10-03 19:33:10.257 When I print the field in an EJB (I use CMP) the millisecond part is zero !!!: Wed Oct 03 19:33:10 GMT+02:00 2001 In milliseconds: 100213039 I had the same problem with the

Re: EJB Primary Key of int

2001-10-04 Thread Fredrik Lindgren
You need to use Integer as PK Class. PK must extend Object Marc Rabil wrote: I can not figure out how to get Orion's EJB CMP to work when the primary key is an 'int'. In the deployment descriptor (ejb-jar.xml), the code is: prim-key-classint/prim-key-class When starting up Orion, I

RE: EJB Primary Key of int

2001-10-04 Thread Alex Paransky
User Integer... -AP_ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Marc Rabil Sent: Thursday, October 04, 2001 1:56 PM To: Orion-Interest Subject: EJB Primary Key of int I can not figure out how to get Orion's EJB CMP to work when the primary key is

Re: EJB Primary Key of int

2001-10-04 Thread Ray Harrison
You will want to use Integer not int --- Marc Rabil [EMAIL PROTECTED] wrote: I can not figure out how to get Orion's EJB CMP to work when the primary key is an 'int'. In the deployment descriptor (ejb-jar.xml), the code is: prim-key-classint/prim-key-class When starting up Orion, I

Re: Date conversion problem ??

2001-10-04 Thread Sarathy Mattaparti
use java.util.Timestamp instead of Date that will solve your problem. Sarathy Hellu, I retrieve a datetime field from the Ms SQL server. With a win sql client I see: 2001-10-03 19:33:10.257 When I print the field in an EJB (I use CMP) the millisecond part is zero !!!: Wed Oct 03 19:33:10

Re: Why can't orion respond to their customers? (was RE: FW: Logging in to server twice does not work.)

2001-10-04 Thread Yashasree
Hi Christian. We r in the same boat at u were and suffer from the same problem of logging in to the server twice not working. Did u find any workaround? Or did the orion guys respond Awaiting eagerly for a positive response Thanks in advance Yash - Original Message - From: [EMAIL