Re: SSL - 100% CPU

2000-07-05 Thread Klaus Thiele
Hi Mattias, Have you found any solution to the SSL problem? I have tried for days now without success. me too :( i've read your posting and i tried your steps without success. step1.bat:keytool -genkey -keyalg "RSA" -alias testalias -keystore mykeystore -dname "cn=My Name, ou=MyCompany,

Re: AW: Update: Performance Scalability

2000-07-05 Thread David Sierra Fernandez
Hi Tom, I would like to know exactly the diference between ejb-location and pooled-location. ...and other thing...but I thing that Orion team is the only one who can answer me... How does ORion manage the connection pools??? I mean that Orion only let you set the max-number of

Re: SSL - 100% CPU

2000-07-05 Thread Karl Avedal
Hello, Yes, we have found a bug related to the 100 % CPU thing. It seems that when a bad certificate was used, IOException's get thrown in the ServerSocket accept() call immediately, which is not the usual behaviour of a ServerSocket. We are now taking care of that problem in a nicer way, and

Re: UserTransaction.

2000-07-05 Thread Karl Avedal
Hello Rui, Currently we do not support getting a UserTransaction reference from an application client (the specification does not say that clients should have access to it). We will probably implement it in a future release, but it will then be Orion specific and not portable to every J2EE

Re: Does the EBB-JAR Class-Path manifest attribute ?

2000-07-05 Thread Karl Avedal
Hello Jeff, Can you please send details that will help us reproduce this? Did it give any stack trace? How do your classes interdepend? please send this info to [EMAIL PROTECTED] if you can. Of course it would help us very much if you could just send the ear, but we understand if you can't.

Re: SSL-problems (was SSL-100% CPU)

2000-07-05 Thread Mattias Arbin
I noticed that there is a 1.1.9 version. Tried that. Now I get another message: E:\java\orionjava -jar orion.jar Error listening to SSLServerSocket: No available certificate corresponds to the SSL cipher suites which are enabled. Orion/1.1.9 initialized Seems like the new release changed

AW: Update: Performance Scalability

2000-07-05 Thread Jens Stutte
In the EJBs of the Pet Store is coded a (or several) JNDI name(s) (don't know which in this moment). This name must mach to the given name of an "ejb-location" of orions data-source, not to the given name of "location". If accidently this _name_ in the pet store is "location", you should set

RE: AW: Update: Performance Scalability

2000-07-05 Thread Tom Wnuk
That's a good question but I don't know the answer either. I use ejb-location in my code. I'm going to guess that 'pooled-location' can be used via jsp pages or other Java objects that are not participating in Ejb transactions but maybe someone can confirm that. Unfortunately, the one thing

RE: UserTransaction.

2000-07-05 Thread Rui Gil
Hi Karl, Well, you're right, as far as I know the specification doesn't say that this should be implemented, but it doesn't say the opposite either... and this is a common feature around J2EE servers. So I really hope that the Orion team implement this one quickly... I don't understand why the

Re: SSL - 100% CPU

2000-07-05 Thread Mattias Arbin
Hi, I now use 1.1.9 and get: E:\java\orionjava -jar orion.jar Error listening to SSLServerSocket: No available certificate corresponds to the SSL cipher suites which are enabled. Orion/1.1.9 initialized What could be bad with my certificate? I have done exactly what is told in the documentation.

[Fwd: Re: Performance Scalability Concern]

2000-07-05 Thread Eric Richardson
Oops, forgot to post to the list. Sorry Tom. Original Message Subject: Re: Performance Scalability Concern Date: Wed, 05 Jul 2000 07:24:32 -0700 From: Eric Richardson [EMAIL PROTECTED] To: [EMAIL PROTECTED] References: [EMAIL PROTECTED] Tom Wnuk wrote: I just migrated some

Re: UserTransaction.

2000-07-05 Thread Karl Avedal
Hello Rui, Ok, since you want it, we'll implement it. It's put up as a feature request, so expect it in about a week. Rui Gil wrote: Hi Karl, Well, you're right, as far as I know the specification doesn't say that this should be implemented, but it doesn't say the opposite either... and

RE: UserTransaction.

2000-07-05 Thread Rui Gil
Hi Karl, Well, you really have a way to make us users feel special, don't you... ;) Rui Gil Hello Rui, Ok, since you want it, we'll implement it. It's put up as a feature request, so expect it in about a week.

Performance Scalability Concern

2000-07-05 Thread Tom Wnuk
Actually, there is a simple method to turn it off. From Magnus Stenman: "Remove parser.jar and jaxp.jar from the Orion directory and then start Orion with a -Dxml.parser=xerces switch. This launches Orion using the xerces parser only. I hope it helps." I agree, they have stepped outside the

RE: Performance Scalability Concern

2000-07-05 Thread Tom Wnuk
I understand but if you didn't have a J2EE container how would you resolve it? Once in the CLASSPATH all objects within the same JVM are effected by the order; therefore, the idea of self-contained components break down. They're all subject to the JVM including J2EE implementations. Do

RE: EntityContext Environment

2000-07-05 Thread pminearo
Thanks, that solved the class cast exception, but I am not getting anything for the EntityContext's environment. I get an empty Hashtable back. I guess a better question would be: To set the principal and credential in the EntityContext's environment, does that have to go through a

Re: EntityContext Environment

2000-07-05 Thread Karl Avedal
Hello, Change InitialContext ic2 = (InitialContext)ic1.lookup("java:comp/env"); to Context context = (Context) ic1.lookup("java:comp/env"); and you shouldn't get the error. InitialContext is the starting context, not all contexts are InitialContexts, that's why you get a ClassCastException.

ORION and SSL

2000-07-05 Thread Kalvar, Kirk
Any place I can go to get more information on SSL and how it works? I've seen https displayed in the URL and assumed that I was using SSL between the server and the browser. Is that correct? How would you activate SSL? Via a page or login? Thanks, Kirk S. Kalvar, Software Engineer DRS

Multiple ejb containers

2000-07-05 Thread Paolo Sommaruga
Hi, I would like to know if Orion supports several ejb containers (different applications, each in one container) in a single JVM orion instance Thanks Paolo Sommaruga

RE: HELP: Reoccurring ArrayIndexOutOfBoundsException from Orion

2000-07-05 Thread Tom Wnuk
I was just getting a similar error but it was due to an existing jsp page that was using a tag incorrectly. In my case they we're using %@ some java code % which Orion didn't like and it threw an out-of-bounds exception on a String. There's probably an JSP syntax error somewhere in your

Persisting session across restarts

2000-07-05 Thread Joel Shellman
Can someone tell me how I can configure Orion so it will keep sessions across restarts. So if I have a handle to an Entity EJB stored in the servlet session, kill the server (ctrl-c, admin shutdown, kill, etc.), run the server again (java -jar orion.jar), then I want those handles and the users'

Re: HELP: Reoccurring ArrayIndexOutOfBoundsException from Orion

2000-07-05 Thread Karl Avedal
Hello Tom, There's an application log file written for every application. You can find it in application-deployments/myapplication/application.log (or similar depending on if you use another deployment dir and depending on your application name...) With the graphical console that is days away

RE: What is definition of session-timeout ?

2000-07-05 Thread Matt Krevs
As far as I know its the number of minutes since the session was 'used' (number 1) -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Steven PunteSent: Thursday, 6 July 2000 7:47To: Orion-InterestSubject: What is definition of "session-timeout" ?

RE: HELP: Reoccurring ArrayIndexOutOfBoundsException from Orion

2000-07-05 Thread Tom Wnuk
Excellent! -Original Message- From: Karl Avedal [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 05, 2000 3:32 PM To: [EMAIL PROTECTED]; Orion-Interest Subject: Re: HELP: Reoccurring ArrayIndexOutOfBoundsException from Orion Hello Tom, There's an application log file written for every

confused about \orion\default-web-app directories

2000-07-05 Thread hanasaki
There seem to be the same:files under: - examples/cal - examples/jps/cal - WEB-INF/classes/cal Can you please explain which cal directories are used when and for what?

Setting library path

2000-07-05 Thread Tom Wnuk
I've got a number of supporting classes that my ejb's need access to. I originally copied the dir structure beneath the ./lib dir and everything worked fine. I'd really like to keep it with the rest of the application but can't seem to get the server to search the CLASSPATH for these classes

Make changes without losing session?

2000-07-05 Thread Brien Voorhees
Whenever I make a change to one of my servlet source files while a user is in the middle of a session, Orion appears to terminate the session and on subsequent page requests gives the user a ClassCastException (e.g. java.lang.ClassCastException: com.quicksweep.BrowseList at

RE: HELP: Reoccurring ArrayIndexOutOfBoundsException from Orion

2000-07-05 Thread David Mankin
Title: RE: HELP: Reoccurring ArrayIndexOutOfBoundsException At 12:19 PM -0700 7/5/00, Tom Wnuk wrote: I was just getting a similar error but it was due to an existing jsp page that was using a tag incorrectly. In my case they we're using %@ some java code % which Orion didn't like and it threw