RE: DeadlockException

2000-11-14 Thread Christophe Hartwig
Hi all, Say thread A requires resource 1 and 2 to run. Thread B requires resource 1, 2 and 3 to run. What happens when thread A starts, get's a hold of resource 1, then thread B starts, gets a hold of resource 2 and 3, then sits waiting for thread A to let go of resource 1. Similarly,

RE: Anybody had an ejb module that keeps on auto-deploying?

2000-11-10 Thread Christophe Hartwig
Maybe your application is on a file server, and date differences between your orion server and file server could fool orion's touch detection ? -Original Message- From: Andy Chapman [mailto:[EMAIL PROTECTED]] Sent: Friday, November 10, 2000 2:54 PM To: Orion-Interest Subject: Anybody

RE: SSL

2000-11-08 Thread Christophe Hartwig
If I have an ssl connection using https://myserver/myresource?username=myloginpassword=mypassword Are the parameters username and password encrypted or is this available in clear text? Encrypted, definitely: the socket is encrypted by SSL, so everything is. Bye Christophe

RE: setMaxAge(0) does not work correctly

2000-10-16 Thread Christophe Hartwig
Hi ! I thought setMaxAge(0) was used to set a "transient" cookie, one that disapears when browser is closed... If you want the cookie to expire, you'll probably have to set it to a past date explicitely... Bye Christophe -Original Message- From: Dave Ford [mailto:[EMAIL PROTECTED]]

RE: Orion JMS locks up

2000-10-10 Thread Christophe Hartwig
Hi ! Your enumeration is never enumerated... You should call nextElement ! hasMoreElements() does not browse the list. nextElement does... That's an infinite loop in your code. Bye Christophe -Original Message- From: Simon Harris [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October

RE: CMP deployment problem

2000-09-08 Thread Christophe Hartwig
Hi ! I used to get such exceptions too... I had just read about BMPs and CMPs, and tried to implement/specify too many methods in CMP beans. Your problem is probably similar. Your home interface should only have finders in it, findByPrimaryKey and others (and create if appropriate) Your

RE: Sybase

2000-08-25 Thread Christophe Hartwig
Hi, We're successfully working with Orion and Sybase (11.9.2)... Here's a example datasource definition: data-source name="MainDVPDataSource" class="com.evermind.sql.ConnectionDataSource" location="jdbc/DefaultDS"

Did someone get roles working ?

2000-07-27 Thread Christophe Hartwig
Hi all, We have real problems to get role mappings work ! First of all, it's hard to understand why they appear in both orion-application.xml and orion-ejb-jar.xml... Second, it looks like orion-ejb-jar.xml is used, not orion-application.xml, for role mappings Third, Orion always cleans up our

RE: Deployment

2000-07-26 Thread Christophe Hartwig
You can also use EJX... It is a generic EJB XML descriptor editor... It can be customized with home made plug ins, to allow AS specific behavior... And I find it more useable than deploy tool... and it is OpenSource... http://www.dreambean.com http://www.dreambean.com Bye Christophe

Packaging question

2000-07-18 Thread Christophe Hartwig
Hi all, How can I package an application so that orion-ejb-jar.xml is not recreated, but reused instead... If I put orion-application.xml in the META-INF folder of my ear, it is taken into account... But I cannot get orion-ejb-jar.xml to be taken into account (in the ejb/META-INF, or anywhere