RE: system management with orion

2001-03-23 Thread Frank Eggink
Hi, Here are my 2cts. You have two routes: keep all in one directory-tree / partition (easy to backup an restore) or spread it out the UNIX way. I would go for the latter one. The original setup for the filestructure in the UNIX world was based, amongst others, on where the files where used

Problem with Filters and RequestDispatcher in Orion 1.4.5

2001-03-23 Thread Anders Janmyr
Hello, I am trying to use filters for authenticating users. My filter uses RequestDispatcher.forward to show a login page when the user needs to authenticate himself. This results in the filter beeing invoked again. It seems that the RequestDispatcher in orion (both forward and include) invokes

RE: ASP config + clustering

2001-03-23 Thread Frank Eggink
Greg Maybe I do not understand fully what you want to do. When you store all application specific stuff and that file service dies your systems dies. Would that be a problem for you? Anyway if you store all settings in one place you can make those files available in many places by using NFS or

Re: Simultaneous Username/Password Detection

2001-03-23 Thread Daniel Lopez
Hi, Regarding security, the JSDK spec is IMHO too simple and that has forced many people to reinvent the wheel again and again, or get into proprietary solutions. We chose to go our own way to be fully portable and we end up with such a system: .- As we already have implemented a Model 2

SV: Problem with Filters and RequestDispatcher in Orion 1.4.5

2001-03-23 Thread Anders Janmyr
Title: SV: Problem with Filters and RequestDispatcher in Orion 1.4.5 My filter and it's mapping is shown below. Tomcat does not invoke the filter when the RequestDispatcher is used. Since the RequestDispatcher is internal it would seem that it should not invoke the filters. This is however

Problems deploying

2001-03-23 Thread Örjan Classon
Title: SV: Problem run demo servlets Hi, We have developed an application for Weblogic that I'm trying to deploy on Orion. The problem is that I get NoClassDefFound on certain classes when I try to deploy. The class that are missing is a class that I've developed my self to isolate all

Re: bad timestamp confusion

2001-03-23 Thread Felix Schmid
Go to www.orionsupport.com and read about "using postgresql" (the link is somewhere in the EJB section I guess). use the database schema given there instead the one that comes with orion. That solved the problem on my machine. regard felix Eddie wrote: Just like other people in the

Re: Orion on RedHat

2001-03-23 Thread Felix Schmid
Forget about MySQL. It doesn'T work properly (I tried it on Redhat 7.0 and SuSE 6.4). Try postgres instead. It works fine on my machine. felix John Miller wrote: You could use mySQL. Its free and easy to install on Linux. Johnny -Original Message- From: Jarek Skreta

Re: AW: java:comp/Administrator

2001-03-23 Thread Hani Suleiman
Sure, and then when it breaks since it's an unofficial internal class not exposed (I would imagine deliberately so), make sure you don't complain to the list! On Fri, 23 Mar 2001, Haeussler, Heinz wrote: Hello Greg, try the dissambler: D:\orion%java_home%\bin\javap -classpath orion.jar

RE: Problem with Filters and RequestDispatcher in Orion 1.4.5

2001-03-23 Thread Mike Cannon-Brookes
Title: SV: Problem with Filters and RequestDispatcher in Orion 1.4.5 Orion invokes filters on _every request_. That's internal and external. This is IMHO the way it should be done. (Some filters require this to work!) Tomcat only invokes it on _external requests_. AFAIK there is some debate

RE: Orion on RedHat

2001-03-23 Thread Ray Harrison
I always have to throw in SAP DB as well (www.sapdb.org). I have been very happy with the database. I haven't used it on linux, but I understand that it performs nicely on that platform. --Ray --- Kemp Randy-W18971 [EMAIL PROTECTED] wrote: Hypersonic sql has temporary become hsql, as it tries

RE: Problems deploying

2001-03-23 Thread Russ White
Title: SV: Problem run demo servlets This is a classloader issue that arises because of the way that orion.jar is packaged. here are a couple of work arounds. Add the classes you need by usinga library tag. Or, start Orion by calling the com.evermind.server.ApplicationServerclass

SV: Problem with Filters and RequestDispatcher in Orion 1.4.5

2001-03-23 Thread Magnus Rydin
Title: SV: Problem with Filters and RequestDispatcher in Orion 1.4.5 Orion invokes Fitlers on any request, which is the way it should work IMHO. And yes, you need to move your loginPage and failedLoginPage out of the /html/* in order for the filter not to be invoked when opening those

Re: Problem with Filters and RequestDispatcher in Orion 1.4.5

2001-03-23 Thread Marcel Schutte
Just out of curiosity, but why don't you use the standard servlet provisions for authentication? Are there things you can do more easily using filters? I'm just starting to look at what filters can do, so any comments are welcome. Marcel - Original Message - From: "Anders Janmyr" [EMAIL

RE: Impossible getting the attention of the orion (support) team. Are they still around?

2001-03-23 Thread Kemp Randy-W18971
You may be right. Anyone from either the Orion staff, or someone on this list outside the Orion staff, have any additional information to share? -Original Message- From: Fink, Paul [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 22, 2001 5:29 PM To: Orion-Interest Subject: RE:

RE: Weblogic and Orion 6.

2001-03-23 Thread Justen Stepka
What about the remote stubs that Weblogic 6 generates? Do I need to somehow put these files into my class path? On Wed, 21 Mar 2001, Allen Fogleson wrote: basically you are going to have to instantiate your properties (or hashtable) with the values specific to wl. If I recall you need the

RE: Servlet Parameters

2001-03-23 Thread Chuck Butkus
I just wanted to post that I found the problem. I was using a servlet mapping with a url pattern of "/". For some reason the servlet parameters don't come through with this servlet mapping. When I changed the servlet mapping from "/" to "/servlet", everything worked fine. This would seem to

RE: Weblogic and Orion 6.

2001-03-23 Thread Justen Stepka
Right, I got this part working, but I'm getting a java.lang.ClassCastException error when I try to narrow the object. Any ideas? Justen Stepka On Wed, 21 Mar 2001, Allen Fogleson wrote: basically you are going to have to instantiate your properties (or hashtable) with the values specific to

RE: Servlet Parameters

2001-03-23 Thread Hani Suleiman
No i isn't a bug, the servlet spec explicitly disallows servlets from being mapped to / On Fri, 23 Mar 2001, Chuck Butkus wrote: I just wanted to post that I found the problem. I was using a servlet mapping with a url pattern of "/". For some reason the servlet parameters don't come

com.evermind...HttpIOException and Xerces blocking JDBC Connection

2001-03-23 Thread Michael N. Christoff
I wrote a servlet that parses the input stream of a request in the doPost() method using xerces. If I parse the input stream and then try to use jdbc, the following line stalls: Connection con = DriverManager.getConnection(); After about 5 seconds of waiting for that line to execute, I get the

RE: Impossible getting the attention of the orion (support) team. Are they still around?

2001-03-23 Thread Thomas Pridham
I know that I got my invoice faxed to me just hours after posting my complaints on this list. I am glad that they responded, however, I cannot continue to do business in this manner. I build J2EE solutions for multiple clients and recommend the app server that should be purchased. I greatly

Removing Dependent Objects

2001-03-23 Thread Nick Newman
Hi, I have an application in which an entity bean has a collection of dependent objects. When I ask for one of these dependent objects to be removed, Orion generates a SQL command with a WHERE clause which specifies all of the columns of the DO. If some of these columns are null, Orion

RE: Removing SBs when expiring HttpSessions ... the challenge continues.

2001-03-23 Thread Gerald Gutierrez
As with anything, the devil is in the details. SBs expire in one of a number of ways. The two main ways are: you call remove() or they time out. This is well known. So if you have your SB bound to an HttpSession, everything works and you get get your SB from the session at any time. The REAL

RE: Removing SBs when expiring HttpSessions ... the challenge continues.

2001-03-23 Thread Tim Endres
We do not have the problem that you describe. Why? Because we do not let the container perform the authentication. We handle authentication *entirely* in our own code, and completely ignore the J2EE/container authentication. Thus, our servlets always access the EJB SB's using a single

RE: Weblogic and Orion 6.

2001-03-23 Thread Justen Stepka
Update, I have the class cast exception removed, but it's a really strange fix. I've zipped up the class files com/blah/something/hi into a zip and placed the zip file into the orion/lib dir. The class files from the web-inf/classes directory match the class files in the .zip but when the zip

JMS queue not found

2001-03-23 Thread Christian Billen
I'm trying to connect to a JMS queue from a stateless session bean. I got the feeling I am missing something, I get a javax.naming.NameNotFoundException: jms/SyncQueue not found Here is what I have, my jms.xml has an entry like this: jms-server port="9127" !--I tried

RE: can you have multiple load balancers

2001-03-23 Thread Larry Velez
Title: RE: can you have multiple load balancers If you setup multiple hardware load balancers for failover then this should be transparent to Orion. The load balancers will act as one and take over one another in the event of a failover. Orion should not even notice the change. (neither

RE: Servlet Parameters

2001-03-23 Thread Chuck Butkus
Then the orion primer ought to be updated since "hello-planet-pkg.zip" has a web.xml file that uses a servlet mapping of "/" -Original Message- From: Hani Suleiman [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 10:16 AM To: Orion-Interest Subject: RE: Servlet Parameters No i

Specification for java.naming.provider.url...

2001-03-23 Thread Alex Paransky
Orion's documentation talks about specifying the java.naming.provider.url in the following format: java.naming.provider.url=ormi://localhost/domain (application) At a different time, I was having a problem trying to connect one Orion Server (JSP) to another Orion Server using

help

2001-03-23 Thread elton
help

problem running oracle with orion: 'oracle.jdbc.driver.OracleDriver' not found!

2001-03-23 Thread Roland Dong
I tried to run oracl with orion. When I started orion I got the following error message: Error initializing server: DriverManagerDataSource driver 'oracle.jdbc.driver.OracleDriver' not found. Where is driver supposed to be located? I have set the environment so that the class12.zip is

RE: problem running oracle with orion: 'oracle.jdbc.driver.OracleDriver' not found!

2001-03-23 Thread elephantwalker
I believe that its the class path stuff, doesn't work with a jar. You need to drop the class12.zip (weird, I am using class111.zip) in the lib directory. Your data-sources is fine. Regards, Elephantwalker. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf

RE: Tag libraries

2001-03-23 Thread Thanh, Dao Chung Thanh
The .tld file is located in the .jar file. /META-INF/.tld -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Burr SutterSent: Thursday, March 22, 2001 10:56 PMTo: Orion-InterestSubject: Re: Tag libraries Normally taglib-location (in

RE: problem running oracle with orion: 'oracle.jdbc.driver.OracleDriver' not found!

2001-03-23 Thread Wagner, SnowWolf CAR
the file is classes12.zip and should be in the orion/lib SnowWolf -Original Message- From: Roland Dong [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 24, 2001 1:10 AM To: Orion-Interest Subject: problem running oracle with orion: 'oracle.jdbc.driver.OracleDriver' not found! I