hsql datasource - can't make it work

2000-08-17 Thread Alex Johnson
Hi All... I'm sorry to ask such a basic question, but I have searched the archive with no luck. I can't make Hypersonic SQL work. I have downloaded hsql version 142 and Orion 1.2.0. I believe my problem is confusion about where everything goes. The docs say: 2. Put the hSql directory under

RE: please please please include change list with new releases

2000-08-17 Thread J.T. Wenting
developers creating documentation that is useful to users? You must be kidding ;) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Karl Avedal Sent: Wednesday, August 16, 2000 23:26 To: Orion-Interest Subject: Re: please please please include change

AW: MySql?

2000-08-17 Thread Jens Stutte
Just to drop in a line: We successfully use Interbase 6 as database server for our entity beans (BMP, so do not ask for a database scheme ;-). It should fit all the needs the people have that want to use MySQL - first of all, it's now free... (and, astonishingly, it seems even faster, although i

Re: Different data-sources for different applications?

2000-08-17 Thread Anders Bengtsson
Karl Avedal wrote: Hello Anders, I see you've gotten good answers already, just wanted to point that if you want to use different defaults per application rather than per ejb, you can set the default-data-source attribute in the orion-application.xml file. Yeah, there lots of good and

RE: MySql?

2000-08-17 Thread J.T. Wenting
Interbase 6 is great, when you don't mind the shortcomings in the JDBC driver (a fix for it is now in testing, though): it does not support renaming columns using AS. So "select count(*) AS userCount from users" will not allow getInt("userCount"), though getInt(1) works fine, so there is a simple

JavaBean Introspection

2000-08-17 Thread Lars Borup Jensen
Hi! I've come across a bit of a problem when using jsp:setProperty ... on a JavaBean using Orion. I have a HTML form with 3 input fields thats named: action, amount and productId. The form calls a .jsp page like : FORM action="processing/processCart.jsp" method="POST" ... and this JSP page

Help: Mapping roles to users.

2000-08-17 Thread wim veninga
Hi all, I have created an set of Enterprise beans and in the assembly descriptor I have defined a set of roles that have some permissions to run methods ( in ejb-jar.xml). When I deploy the application and the modify orion-ejb-jar.xml to map the roles to different groups in the assembly

Re: Orion and Cloudscape

2000-08-17 Thread wim veninga
Hi Ishpal, Thanks for the help. I'll try it out later (already have interbase working with orion and interbase is free(opensource since version 6), so the choice is obvious.) Workaround for your error: Use cloudscape with rmijdbc or cloudconnector so you have to start and shutdown the database

RE: Help: Mapping roles to users.

2000-08-17 Thread mark . lussier
This week I only have 11am EST (8am here in California) open Mark LussierChief Software ArchitectGE Power Systems eBusinessDC 8*433-2232 -Original Message-From: wim veninga [mailto:[EMAIL PROTECTED]]Sent: Thursday, August 17, 2000 11:05 AMTo: Orion-InterestSubject: Help:

Minimum orion-ejb-jar.xml?

2000-08-17 Thread Anders Bengtsson
Hello, does anyone know what fields in orion-ejb-jar.xml have to be defined for it to work? It seems to be a strange mix of user- and Orion-controlled fields, with no documentation about which fields that are needed. The attribute "wrapper" is of course filled out by Orion, but what about the

Re: Help: Mapping roles to users.

2000-08-17 Thread Dave Smith
This has been a long running problem that I never received an answer to, despite much discussion on this list. wim veninga wrote: Hi all, I have created an set of Enterprise beans and in the assembly descriptor I have defined a set of roles that have some permissions to run methods ( in

Re: Clustering in Orion

2000-08-17 Thread Joseph B. Ottinger
If I had any information about it, sure. I only have one machine; clustering isn't really an option for me. On Thu, 17 Aug 2000, Pedro Garcia Lopez wrote: Hello Joseph, Congratulation for your interesting site about Orion. My question is about clustering ? Do you plan to include some

Number of connections opened

2000-08-17 Thread Rick Bos
I am creating an application that uses both CMP and BMP entity beans to connect to a database. There is only one database in the application. The development version of the Ingres database only allows five connections to be open. I am always running out of connections in Orion. Is there a

FEDERATION IN ORION

2000-08-17 Thread Pedro Garcia Lopez
Hi, I need to stablish a federation between two servers and thus stablish a security context. For example Case 1: I authenticate against server A accesing a Web page, afterwards I connect to a protected web page in server B. I would like that my user information would be propagated to server

Need help retrieving EJB env values (fwd)

2000-08-17 Thread Joseph B. Ottinger
This is something sent to me that the list is more appropriate for. --- Joseph B. Ottinger [EMAIL PROTECTED] http://cupid.suninternet.com/~joeo HOMES.COM Developer -- Forwarded message -- Date: Thu, 17

Re: hsql datasource - can't make it work

2000-08-17 Thread Alex Johnson
Thanks Richard. Unfortunatly, I get the very same error when I do this... --On Thursday, August 17, 2000 6:30 PM +1200 Richard Woodward [EMAIL PROTECTED] wrote: Alex, Only put the jar file (hsql.jar) in your lib dir. --- Richard Woodward G8 Labs Ltd.

Overriding Server response header

2000-08-17 Thread John Moore
I would like to be able to customize the name of the header returned in the HTTP response headers, by using res.setHeader("Server","MyCompanyServer"). Using Resin standalone, I can get this to work. Using Resin with Apache, nothing happens - my server header is ignored or overridden by the

Re: hsql datasource - can't make it work

2000-08-17 Thread Richard Woodward
Oh, right. Might need to see your data-source config file then. If you are going to post it to the group, dont forget to replace any sensitive info like passwords etc... with bogus ones ;-) --- Richard Woodward G8 Labs Ltd. Direct Dial (04) 9393414

Re: Clustering in Orion

2000-08-17 Thread Kevin Duffey
I have clustered Orion, but there is alot I don't know about it. I have learned that Orion does session replication to every server in the cluster farm. I have not been able to test it with a load-balancer yet. Anyone happen to know of a "free" software load-balancer that can be used to test

Re: hsql datasource - can't make it work

2000-08-17 Thread Alex Johnson
Thanks, Richard. I have pasted it below. ?xml version="1.0"? !DOCTYPE data-sources PUBLIC "Orion data-sources" "http://www.orionserver.com/dtds/data-sources.dtd" data-sources data-source name="Default data-source"

Problem creating entities narrowed down

2000-08-17 Thread Kurt Hoyt
I've figured out part of my problem (at least I have a workaround): My entity contains three Date fields. If those fields are not given an explicit value (something other than null), then the ejbCreate fails. Here is a partial stack trace: Nested exception is: java.sql.SQLException:

Re: hsql datasource - can't make it work

2000-08-17 Thread Alex Johnson
Thanks Richard. That did it. It wanted: org.hsql.jdbcDriver I appreiate your help very much. Orion team, if your reading, do you think you could correct your docs/FAQ? Alex --On Friday, August 18, 2000 10:57 AM +1200 Richard Woodward [EMAIL PROTECTED] wrote: I just re-examined the contents

Re: Clustering in Orion

2000-08-17 Thread Joel Shellman
Quick and dirty "load balancing" is round robin DNS. I just did a quick test the other day and set up two machines with our app. Hit the URL once and logged in (keeps object in session). Killed the app on one machine and hit reload. I was still logged in on the other machine. I got some errors as

RE: hsql datasource - can't make it work

2000-08-17 Thread Hung Le
Using the latest version: hsql_142.zip (1.42 from June 2000), I had to change the value of: connection-driver="hSql.hDriver" to connection-driver="org.hsql.jdbcDriver" -Original Message- From: Alex Johnson [mailto:[EMAIL PROTECTED]] Sent: Thursday, August

Basic security....

2000-08-17 Thread Gavin Thomas Nicol
I'm probably missing something obvious, but... how does one set up security for URL's in Orion. For example, if I want to protect /foo/*, how can I do that?

Trouble with Rmi-Cloudscape from Orion

2000-08-17 Thread Ishpal
Hi, I'm having trouble connecting to cloudscape database from orion. Using the same driver, host and the port I can connect to the Cloudscape using RmiJdbcDriver from an application running in a different JVM, but when I try the same from orion I get an error like Auto-deploying