Re: What documentation?

2001-02-27 Thread Danut Prisacaru
Thanks Gary! It does help. Danut At 06:41 PM 2/26/2001 -0700, Gary Shea wrote: The same thing was bothering me, because having to modify orion's deployment descriptors was getting old. It turns out that you can make the orion web, ejb, and application deployment documents be part of your

RE: jsp form-based authentication

2001-02-27 Thread Danut Prisacaru
Go inside "orion.jar" and extract "EJBUser*.class" files then use reverse engeneering to get the java code and you will see exactly what you need to implement. Then go into "orion-application.xml" file and add user-manager class="com.acme.security.CustomUserManager"

Re: How can I use Application session?

2001-02-20 Thread Danut Prisacaru
I would add: * how can I retrieve the session ID while I am inside an EJB method so I can figure out on each server in the cluster what client is served? * how can I get rid of the session ID that appears in the URL? Thank you! Danut At 01:48 PM 2/20/2001 +0330, Hamid Abbasi wrote: Hi , I want

Re: Can not find load-balancer.xml !!!

2001-02-13 Thread Danut Prisacaru
Yes you have to create it by yourself. Here is the one I currently use load-balancer host="MyHost" debug="true" selection-type="first" use-session-id="false" use-ip="false" island id="1"

RE: Any news from Orion yet??

2001-02-13 Thread Danut Prisacaru
I just played a little bit with WebSphere and I have to agree with Konstantin: it does not work very well. I was expecting a better tool from IBM and I am really dissapointed. Danut At 01:56 PM 2/13/2001 +0100, Konstantin Polyzois wrote: "Weblogic (and the high priced products like Websphere)

Scalability of struts on Orion

2001-02-09 Thread Danut Prisacaru
Did anyone try to play with struts and see if it scales on Orion? I have built a cluster that runs fine ( 3 machines, one is the loadbalancer and the other 2 form one island) but the pages that use a lot of struts simply do not scale. I am using a testing tool that is able to run multiple

Re: Too much caching? - the database has changed

2001-02-06 Thread Danut Prisacaru
Thanks for the help Tim. I am not sure I like this solution. Why do I have to go and change this in the application-deployments folder? The same question applies to the table name for the CMP Beans. How do I choose a table name different than the default one without touvhign the

Re: Too much caching? - the database has changed

2001-02-06 Thread Danut Prisacaru
Thank you again for your very helpful advices! It saves me a lot of time. Danut At 12:55 PM 2/6/2001 -0500, Tim Endres wrote: You should not be changing the deployment folder files directly, except to check to see if something works. You should create your own orion-ejb-jar.xml file in your

Too much caching? - the database has changed

2001-02-05 Thread Danut Prisacaru
I am having a problem. I am creating some records using some BMP and CMP EJBs. While Orion is still running I am deleting the records using a simple JDBC client. When I try to ccreate the same records again I get an exception that says javax.ejb.DuplicateKeyException: Entity already exists

Oracle database and connection pooling

2001-02-01 Thread Danut Prisacaru
Hi, I am new to EJBs so I apologize if my question sounds silly. I am trying to configure Orion to use Oracle 8 and pooled connections. This is how my data-source looks like: data-source class="com.evermind.sql.ConnectionDataSource" ejb-location="jdbc/MyApollo"

How to configure Orion to use Oracle

2001-01-17 Thread Danut Prisacaru
I am trying to use Oracle database with Orion. In the "data-source.xml" file I have added: data-source class="com.evermind.sql.DriverManagerDataSource" name="Oracle" schema="database-schemas/oracle.xml" location="jdbc/OracleCoreDS"

Re: How to configure Orion to use Oracle

2001-01-17 Thread Danut Prisacaru
e to point to where Oracle installed the driver files? Do I need to have two copies of the driver files on my machine? Maybe this is an idea for a future improvement for Orion(?) Gary Danut Danut Prisacaru ([EMAIL PROTECTED]) wrote: I am trying to use Oracle database with Orion. In