Strange Servlet error...

2000-08-09 Thread Alexandre J. Boudreau
I have a problem with my servlets I have an applet that communicates with a Servlets, but I keep getting a FileNotFoundException the Servlet is supposedly not found. But I see that the servlet's Init method is actually called. So I don't understand what is the problem...the

has anyone used ssl on linux w/orion?

2000-08-09 Thread Joseph B. Ottinger
I'm looking for proof that it can be done, and then - perhaps - maybe even a "how you did it," but mainly I'm trying to make sure it can be done before I spend time on it. --- Joseph B. Ottinger [EMAIL PROTECTED]

Re: has anyone used ssl on linux w/orion?

2000-08-09 Thread James Ho
I did get server authenication to work...couldn't get client authenication to work.. :( I used JSSE+JDK1.2, on debain linux 2.2 (if that matters). Just basically follow the ssl-howto from orionserver.com.. James. On Wed, 9 Aug 2000 05:45:31 -0400 (EDT), you wrote: I'm looking for proof that

Re: has anyone used ssl on linux w/orion?

2000-08-09 Thread Joseph B. Ottinger
Okay, I've had three or four people say that it works, has slow initialization, and a few mentioned that the keytool stuff needed to be done on windows. I'll give it a try now. Thank you very much! --- Joseph B. Ottinger

Orion on IBM AS/400

2000-08-09 Thread Klaus Thiele
Hello, has anyone running the Orion Server nativ on the AS/400? i try this, but i got following exception (jdk 1.2.2): [] Klasse com/evermind/naming/archive/in.class wird aus /home/LOGAPGMR/orion/orion.jar geladen Klasse com/evermind/naming/memory/ih.class wird aus

SQL error: Connection is broken

2000-08-09 Thread Winter, Jörg
Using the HypersonicSQL Server-mode driver, I get an error message: "Auto-deploying product... SQL error: Connection is broken" (with the error always at the deployment of the *first* application) I already tried various connection settings in data-sources.xml with no success. anyone

Re: has anyone used ssl on linux w/orion?

2000-08-09 Thread Robert Krueger
I must admit I'm not quite sure because we haven't used it in a production system. I thought it was just when starting the first ssl session after restart of the server but I could be wrong. we didn't check thoroughly. .. 5 min later .. I just checked and it's only the first session that's

Jive

2000-08-09 Thread Chris Miller
Has anyone here used Jive (www.coolservlets.com/jive) with Orion (1.1.37)? I've just tried to set it up, and hit a problem because the orion/lib/hsql.jar file contains a class called 'Tree'. Jive also has a class called this, and when I try to use it in a JSP page, Orion finds Hypersonic's Tree

New Xalan/Xerxes

2000-08-09 Thread KirkYarina
Has anyone tried the latest versions of Xalan (1.2D01) and Xerxes (1.1.2) with Orion? If so, do they still have memory leaks? Kirk Yarina [EMAIL PROTECTED]

RE: Jive

2000-08-09 Thread J.T. Wenting
I'm working on building Jive. I'll look into it and forward your message to the main maintainers. Jive probably does not see the class, but the JSP engine does. Maybe that's what is causing problems. Have you been able to create the Jive database on hSQL? If so, can you send in the SQL scripts

Re: Jive

2000-08-09 Thread Chris Miller
Thanks for the reply Jeroen. As far as I can see, this is actually a bug in Orion - it's exposing the classes in hsql.jar (and probably the other /lib jars?) to JSP pages when it shouldn't be. I don't think Jive needs fixing? As for the hSQL scripts, I'm sorry but I don't have any - I'm

Re: Jive

2000-08-09 Thread Chris Miller
Oh I see, I didn't know that was how default packages worked. Nasty. In that case I'd agree that it's hSQL that's causing the problem. I'll drop them a line and see what they are willing to do about it. - Original Message - From: "Jason von Nieda" [EMAIL PROTECTED] To: "Orion-Interest"

Re: Jive

2000-08-09 Thread Joseph B. Ottinger
Um, no. It's not a bug in orion. It's a classpath issue, and literally a problem with hsql.jar, as stated. $ORION/lib jars get put in the classpath, and since Tree.class in hsql is in the default package, it's exposed according to java's rules. If you want to blame Java, fine. Go for it. If you

Re: Jive

2000-08-09 Thread Matt Adam Tucker
Jospeh, Thanks for the input. We'll probably just modify Jive since that's the fastest fix for our Orion users. :) It would be cool if the Orion people fixed the problem eventually, though. -Matt On Wed, 9 Aug 2000, Joseph B. Ottinger wrote: Um, no. It's not a bug in orion. It's a

EntityBean fields with new Orion

2000-08-09 Thread Rick Bos
I have a question about the javax.ejb.EntityBean in Orion. I was using introspection to get the declared fields of my entity bean instance: Fields [] fields = myEJB.getClass().getDeclaredFields(); I was using this in a function transferEntityToData(

Re: Jive

2000-08-09 Thread Chris Miller
Yep sorry, my posts always seem to take a few minutes to get through to the list - by which time Jason von Nieda had pointed out what the real problem was. And then you did too - you probably wrote yours before Jason's had come through too - argh! :-). Thanks for the help - I've only been working

RE: Jive

2000-08-09 Thread J.T. Wenting
Will Orion survive without hSQL installed? I do not use it for anything myself, so if Orion can do without, so can I. I could always replace it with another database if that is possible (instantDb, Interbase, Oracle (at work), even MS Access...). Jeroen T Wenting [EMAIL PROTECTED] ICQ UIN

RE: Jive

2000-08-09 Thread Joseph B. Ottinger
Sure. hsql serves just as a sort of "default database" for orion, so you'll always have SOMETHING, even though the default mode of hsql kinda sucks. (Anyone looked into getting hsql to run in server mode from inside orion?) On Wed, 9 Aug 2000, J.T. Wenting wrote: Will Orion survive without

webapp design: how to handle connection pooling

2000-08-09 Thread Joe Peer
hi everybody, i have a design question: how should i manage (pooled) database connections in my web app? i found different hints from different sources... * some people say, it's best practice to put 1 connection into 1 user's http session and use it for all requests of that user * other

RE: Client app problem

2000-08-09 Thread Jason Smith
I think your problem lies within your client jndi.properties setup, specifically your value for java.naming.provider.url. I believe you must specifiy this url as: java.naming.provider.url=url/application so you would probably need to replace what you currently have with:

Progress and Orion

2000-08-09 Thread Alan Perry
Does anybody use the progress Db with orion. Are there any issues with the data-schema etc. Thanks in advance

Re: webapp design: how to handle connection pooling

2000-08-09 Thread Subrahmanyam Allamaraju
* some people say, it's best practice to put 1 connection into 1 user's http session and use it for all requests of that user This should not be done because you end up having one connection/session. Moreover connection objects are not serializable. * other people say it's best practice

Re: InputStream as parameter not supported

2000-08-09 Thread Lorin Kobashigawa
Nevermind. Figured it out. I was using one of my own java types in the entity bean, and hadn't mapped it in postgres.xml yet. -Lkb At 07:31 PM 8/8/00 -0700, Lorin Kobashigawa-Bates wrote: I am totally stumped about this error, I'm getting it when I try to create my Entity Bean in a servlet.

TopicSession.createSubscriber

2000-08-09 Thread Vidur Dhanda
I think there is a bug in the JMS implementation. When I call TopicSession.createSubscriber when the session's connection has been started, the call hangs. However, if I stop the connection before making the call, the code functions as expected. Is this a bug or is it illegal to create a

EntityBean change notification

2000-08-09 Thread Vidur Dhanda
Hello, I need some help with issuing notifications when an EntityBean's state changes. Currently, I use JMS Topics to publish messages from an EntityBean when it changes. Within the bean, I keep a dirty flag and in ejbStore publish a message if the bean is dirty. I'm not sure this is the best

RE: webapp design: how to handle connection pooling

2000-08-09 Thread Conrad Chan
Here is my input on this interesting topic. * some people say, it's best practice to put 1 connection into 1 user's http session and use it for all requests of that user This only works if you don't have a lot of users concurrently, say a small intranet application, that doesn't care

RE: webapp design: how to handle connection pooling

2000-08-09 Thread Keven Duffey
My input follows: * some people say, it's best practice to put 1 connection into 1 user's http session and use it for all requests of that user This only works if you don't have a lot of users concurrently, say a small intranet application, that doesn't care scalibility. The reason is

JSP on Win98

2000-08-09 Thread Su, Yi
Hi, I've tried Orion examples on Windows NT 4 and Windows 2000 server. They are all OK. But I couldn't get through in Win98 machine. The problem is whenever a page refers to a JSP page, a "Page not found" will be throwed. Could anyone please help me out? Thank you, Su Yi