RE: I switch from X to Orion because:

2001-02-28 Thread Victor A. Salaman
the open source arena? > Are Apache products perfect? No, not by a long shot. Are they > as bad as you > make them out to be? No, not by a long shot. > Perfection cannot be attained, it can be aspired... The problem is that you can't aspire perfection without criticism. And Apa

RE: I switch from X to Orion because:

2001-02-28 Thread Victor A. Salaman
Tomcat does not support EJB... the original author of the message meant Tomcat & JBoss... And that integration is pure hell... Of course, you can download the already integrated version, but you'd be getting an old JBoss and an old Tomcat... The main problem with Tomcat and JBoss is also their

RE: Orion Server running out of memory fast!

2001-02-15 Thread Victor A. Salaman
Well, not to rant here, but your first mistake is using mysql... it's not designed for ejb/transaction work even though it's been recently kludged to apparently do that. The second might be a leaky mysql jdbc driver (yes, this is a known fact). The third might be in your code, and lastly it could

RE: does the loadbalancer of Orion listens only for HTTP.....

2001-02-15 Thread Victor A. Salaman
No, but you can use HTTP tunneling for that purpose http://www.orionserver.com/docs/rmi-http-tunneling.txt -Original Message- From: Mohit Palhan [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 15, 2001 1:46 AM To: Orion-Interest Subject: does the loadbalancer of Orion listens onl

RE: VARCHAR values are always the length of the field

2001-02-14 Thread Victor A. Salaman
I have some thoughts... don't be cheap and get rid of that piece of crap ODBC-JDBC bridge... buy a real jdbc driver. - peace - Victor! -Original Message- From: Michael S. Kelly [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 14, 2001 2:34 PM To: Orion-Interest Subject: VARCHAR value

RE: Why xsl:include seems to try to find files in /Orion folder a nd n ot web-app root?

2001-02-13 Thread Victor A. Salaman
Is there a call I need to make to get the web-app local root? Or do I need to provide a hard-coded variable on every xsl page that is then used for this purpose?   Thanks.   -Original Message-From: Victor A. Salaman [mailto:[EMAIL PROTECTED]]Sent: Tuesday, Febru

RE: Why xsl:include seems to try to find files in /Orion folder a nd n ot web-app root?

2001-02-13 Thread Victor A. Salaman
xsl:include seems to try to find files in /Orion folder a nd n ot web-app root? And out of curiosity, which XSLT processor are u using then? Rodrigo -Original Message- From: Victor A. Salaman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 13, 2001 2:47 AM To: Orion

RE: Why xsl:include seems to try to find files in /Orion folder and n ot web-app root?

2001-02-12 Thread Victor A. Salaman
Orion should just replace Xalan for Saxon anyways... and use TraX instead of a propietary interface to Xalan... Xalan is Apache's excuse for having a XSLT processors, besides being one of the slowest in the crowd... -- Victor -Original Message- From: Tim Endres [mailto:[EMAIL PROTECTED]

RE: How to specify cache time out period for images !!!!

2001-02-02 Thread Victor A. Salaman
Make a filter and map it to the image filetypes... -Original Message- From: Puthezhath, Rajeev (TWII Boston) [mailto:[EMAIL PROTECTED]] Sent: Friday, February 02, 2001 8:01 PM To: Orion-Interest Subject: How to specify cache time out period for images Hi, We have a J2EE applic

RE: Credit Card Authorization

2001-01-23 Thread Victor A. Salaman
No problem... create a stateless session bean, and make the connection from there. You should be familiar with the JSSE to create this ssl connection to the credit card transaction acquirer. From this session bean, you create a connection, send the data and wait for a response and follow your busi

RE: URGENT! jsp file size limit

2001-01-16 Thread Victor A. Salaman
If it works in Orion, why are you asking here? send email to Allaire instead. > -Original Message- > From: LouisVoo [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, January 17, 2001 1:05 AM > To: Orion-Interest > Subject: Re: URGENT! jsp file size limit > > > what is ur file size? > may be

RE: Can't find DataSource in ejb-jar.xml file???

2000-11-25 Thread Victor A. Salaman
Hi Buck: Orion picks the first datasource in the data-sources.xml file, unless you tell it explicitly which data-source to use in META-INF/orion-application.xml . either make your datasource be the first one the file, or read the docs for (META-INF/orion-application.xml) so you can configure

RE: Orion and Windows 2000 Professional

2000-11-06 Thread Victor A. Salaman
Title: Don't use that jdbc bridge crap -Original Message-From: Jan Tye [mailto:[EMAIL PROTECTED]]Sent: Monday, November 06, 2000 2:11 PMTo: Orion-InterestCc: [EMAIL PROTECTED]Subject: Orion and Windows 2000 Professional I have an application which runs fine under W

RE: Orion on Linux NOT as root

2000-09-28 Thread Victor A. Salaman
You could've used ipfilter for Solaris -Original Message- From: Sach Jobb [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 28, 2000 5:43 PM To: Orion-Interest Subject: Re: Orion on Linux NOT as root We just went through this about a week ago, check out the list archives. There

RE: SV: WEB-SITE

2000-07-26 Thread Victor A. Salaman
Hi David: I have created a diagram that could help you understand the relationship. /Victor > -Original Message- > From: David Sierra Fernandez [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 26, 2000 11:22 AM > To: Orion-Interest > Cc: Orion-Interest > Subject: Re: SV: WEB-SITE > >

RE:

2000-07-17 Thread Victor A. Salaman
A better way, which I use for packaging is to create an almost empty (if you have an existing orion-application.xml just add the attribute in the root tag) orion-application.xml by yourself with a "default-data-source=dd" as described in this example (of course, this only works with build 1.1.

RE: exception error while shutting down the server???

2000-07-17 Thread Victor A. Salaman
> Orion team- > I am seriously evaluating Orion and am rather > disappointed that I can't > shutdown nor can I restart Orion without receiving a ClassNotFound > exception. I am sorry to hear that you have had problems. The problem you are seeing is caused by two reasons. The first reason

RE: sendRedirect in orion and jrun

2000-07-14 Thread Victor A. Salaman
First let me start by saying that this is not a bug...nor a misinterpretation of the specs. Servlets 2.2 specification introduces the concept of "web-app" contexts. A context is just that, an isolated space where your web application runs. It has no notion of anything outside of it. This is the re

RE: and ?

2000-07-11 Thread Victor A. Salaman
Hi Duane: If you look at section 2.13.4, you'll see that your code should be changed to instead of > -Original Message- > From: Duane Fields [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 11, 2000 8:16 PM > To: Orion-Interest > Subject: and ? > > > in 1.1.21 and 1.1.19 I

RE: Problem with deploying struts-documentation.war AND any way to search archives?

2000-07-10 Thread Victor A. Salaman
Hi Megan: Your configuration seems to be right except for one detail. Let me get the concept straight so you understand it. An Enterprise Application (what Orion calls an Application) is a J2EE deployment unit packaged as an "ear" or "Enterprise Archive". This ear can contain 0, 1 or more modu

RE: Shutting down orion 1.1.4 hangs ports

2000-07-03 Thread Victor A. Salaman
Probably at the SuperMarket > -Original Message- > From: S Sykes [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 03, 2000 6:59 PM > To: Orion-Interest > Subject: Re: Shutting down orion 1.1.4 hangs ports > > > > > > > > > - doesn't the above error look like the onion server >

RE: Performance & Scalability Concern

2000-07-02 Thread Victor A. Salaman
First, a few clarificatons Orion does not default to Sun's parser. By default Orion uses Sun's JAXP Optional package, which by default uses Sun's XML Parser. Orion uses this parser mainly for two things: 1. Accessing all xml config/deployment files 2. Used by the XSLServlet

RE: urgent: error accessing jar file

2000-06-15 Thread Victor A. Salaman
> >CASE 2: > >ECS might be using the wrong ClassLoader... Apache code > usually misbehaves > >in this aspect. I only wish they would take advice... In > Tomcat this might > >work, since contrary to Orion, Tomcat has no notion of > REALLY isolated web > >applications. > > can you elaborate on t

RE: urgent: error accessing jar file

2000-06-15 Thread Victor A. Salaman
It's not a bug... at least not Orion's CASE 1: If you are using jdk1.3, you'll know this is a known bug... ResourceBundle is broken in 1.3. Test the app with jdk1.2.2 and your problems will go away. CASE 2: ECS might be using the wrong ClassLoader... Apache code usually misbehaves in this

FW: Two Instances of orion

2000-06-14 Thread Victor A. Salaman
Forwarded for the benefit of everyone > -Original Message- > From: Victor A. Salaman > Sent: Wednesday, June 14, 2000 12:45 PM > To: 'Hashim Merchant' > Subject: RE: Two Instances of orion > > Hi Hashim: > > First, you don

RE: CLUSTERING ¨?

2000-06-08 Thread Victor A. Salaman
http://www.orionserver.com/docs/http-clustering-howto.html > -Original Message- > From: Mao, Dean <[EMAIL PROTECTED]> [mailto:[EMAIL PROTECTED]] > Sent: Thursday, June 08, 2000 5:10 AM > To: Orion-Interest > Subject: RE: CLUSTERING ¨? > > > I too would like to know about this... do rep

RE: connection reset by peer problems

2000-06-07 Thread Victor A. Salaman
This is a design issue in PetStore... PetStore is an extremely badly written application :) If you look at their source, you'll find the source of the "Connection Reset by peer". Most of the bugs present in PetStore have been documented by Magnus, and can be found orion/applications/estore-bugs.tx

RE: Makefiles

2000-05-16 Thread Victor A. Salaman
Well, then why make everyone suffer... make your ant code public, and become a hero :) > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 16, 2000 10:20 AM > To: Orion-Interest > Subject: Re: Makefiles > > > > > > > > Hi Ernst, > > > How

RE: Tag Example Problem

2000-04-25 Thread Victor A. Salaman
Hi Eric:   The bug you mentioned has been corrected in an internal build of Orion already. This release is currently under regression testing and will be available shortly.   -- Victor -Original Message-From: Eric Richardson [mailto:[EMAIL PROTECTED]]Sent: Tuesday, April 25, 2

Debugging

2000-03-23 Thread Victor A. Salaman
Is there any flag in Orion to turn very verbose debugging??

Weird deployment error....cmt-datasource?

2000-03-22 Thread Victor A. Salaman
Well, I wish I had real documentation or source, but I'll have to accept realities :)   Anyways, I'm having this error in 0.94p,   Auto-deploying tspg-ejb... Error compiling file:/C:/projects/tspg/deploy/tspg-ejb/: No default cmt-datasource and no source specified.   This is my ebj-bar:  

RE: WEB-INF/lib and classloader?

2000-03-03 Thread Victor A. Salaman
Doesn't it already do this? -Original Message- From: George Henry C. Daswani [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 04, 2000 12:21 AM To: Orion-Interest Subject: WEB-INF/lib and classloader? Hello, Will the 1.0 version of orion-server support classloading from jars in the "WE

FW: TagLib discrepancy

2000-02-10 Thread Victor A. Salaman
-Original Message- From: Victor A. Salaman Sent: Thursday, February 10, 2000 3:15 AM To: 'Orion-Interest' Subject: TagLib discrepancy In the JSP 1.1 Spec, in the tag extension DTD, the "shortname" attribute is not required. But in Orion, as of 0.91h, it complains