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. Similarl

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 ha

RE: SSL

2000-11-08 Thread Christophe Hartwig
> If I have an ssl connection using > https://myserver/myresource?username=mylogin&password=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: orion-*.xml

2000-11-03 Thread Christophe Hartwig
Hi, At the beginning of every orion-*.xml file description in the docs, there is a paragraph which explains where to put the file. It's not cristal clear, but has worked for us. Bye, Christophe > -Original Message- > From: Gerald Gutierrez [mailto:[EMAIL PROTECTED]] > Sent: Friday, Nove

RE: HIGH PRIORITY:Contact Information??????

2000-10-31 Thread Christophe Hartwig
READY TO PAY CASH looks like "one more f***g spam" to me... -> immediate delete. You can even have filters for this ! I'd rather say SALES: I want to buy licenses ! My 2 cents Christophe > -Original Message- > From: Kemp Randy-W18971 [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 3

RE: Starting thread when Orion starts

2000-10-25 Thread Christophe Hartwig
You could write a J2EE client module, and specify it should be started upon startup of the server (can't remember in which .xml file it is specified). Or you could write a program with a main() which will start your thread and Orion... Look in the manifest of orion.jar to know the main class name

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 10,

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 interfac

RE: Sybase

2000-08-24 Thread Christophe Hartwig
Hi, We're successfully working with Orion and Sybase (11.9.2)... Here's a example datasource definition: The URL is special since the DB runs on HP/UX and is HP Roman 8 encoded... We had to ask Sybase to speak iso1, since Java has no Roman8->iso1 converter. Additionnally, we

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 ro

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 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 el