Re: JDom and Orion

2000-12-16 Thread David Kinnvall
Hi Mark, and the list, I ran into this as well, just two days ago. I tried putting the new xerces.jar in WEB-INF/lib as well as in orion/lib, with no effect. Finally I simply replaced the $ORION_DIR/xerces.jar with the new one as you are thinking about. It worked nicely, and I have not seen any

ejb performance

2000-12-16 Thread Savotchkin Egor
Hi all! I made some tests to find out how transactions affect performance. I called a sessionless' ejb empty function with different transaction attributes. It turned out that call time mean was about 250 ms and it almost not changed depending on attributesn (Requires, supports, ...). So,

RE: How to configure a data-source alias per application?

2000-12-16 Thread Robert Krueger
At 11:00 15.12.00 , you wrote: I have had the same problem tending to make me doubt the Krueger post. My :-(((. I trold the whole truth and nothing but the truth, please believe me! ;-))) I've been using the datasource-alias feature for more than 2 months now without any problem. could it be

Re: ejb performance

2000-12-16 Thread Robert Krueger
At 14:28 16.12.00 , you wrote: Hi all! I made some tests to find out how transactions affect performance. I called a sessionless' ejb empty function with different transaction attributes. It turned out that call time mean was about 250 ms and it almost not changed depending on

out-of-memory error

2000-12-16 Thread umesh sonavane
hi folks, i am facing a really irritating problem these days. i am having major problems with changing an ear and deploying it again. it often happens that i change the ear and when i update the ear in orion it tries to autodeploy and gives me the following error: D:\orionjava -jar

data source

2000-12-16 Thread Gitanjali_Singh
Placed At : BLR Gitanjali Singh@SATYAM 12/16/2000 06:34 PM hi all, Instead of connencting to Hypersonic SQL database ,I want to connect to MS-Access.What changes do I need to make in my application. Thanks in advance, gitanjali.

RE: ejb performance

2000-12-16 Thread Savotchkin Egor
Yeah!!! I forgot that in this function I got not pooled db connection. So, after I turned the pooling on it became 0 to 10 ms (on PIII 600 with 256 RAM) to invoke this function!!! Great indexes!! So given these numbers I may throw away all these transaction attributes and f.ex. always specify

Re: JDom and Orion

2000-12-16 Thread Joshua Goodall
On Fri, 15 Dec 2000 [EMAIL PROTECTED] wrote: So my question is, is it ok to swap out Orion's old xerces.jar for the new one? Will I run into unforseen trouble down the road? Is there another way of solving this problem that i am unaware of or too ignorant to figure out? Xerces has had a

how to deploy an app with only jsp, servlets and beans (not ejb)

2000-12-16 Thread Steven and Susan Hirsch
Hi, Can anyone point me to some literature explaining how to deploy an app that does not contain ejbs? For example, I'mm looking for a way to deploy a .war file without having to construct a .ear file. Any help would be appreciated!! Thanks!

Re: ejb performance

2000-12-16 Thread Marcus Lankenau
Hi Savotchkin! Could you please describe, what you did to activate pooling? I tried this for my application, but without success... (could you maybe post you datasource xml?) thx in advance Marcus Lankenau Yeah!!! I forgot that in this function I got not pooled db connection. So, after I

RE: ejb performance

2000-12-16 Thread Savotchkin Egor
Yes, of course: data-source name="DateSource" class="com.evermind.sql.ConnectionDataSource" location="jdbc/defaultCBOSS" schema="/database-schemas/oracle.xml" pooled-location="jdbc/CBOSS"

Weihnachtsangebot

2000-12-16 Thread Kinkerlitzchen
Liebe Kunden, das Weihnachtsgeschäft naht und der ein oder andere sucht noch verzweifelt nach dem passenden Geschenk. Für all diejenigen haben wir ein SUPER-SONDER-WEIHNACHTS- ANGEBOT, den Miniroller von "Juststart" für nur 99,- DM inkl. Versandkosten. Der

RE: how to deploy an app with only jsp, servlets and beans (not ejb)

2000-12-16 Thread Jarek Skreta
This may not be the best way of doing things but in a situation like this we normally generate the .ear file containing only the .war file plus the j2ee deployment descriptor (application.xml). The .war file is created in the same fashion as for an application with EJBs. Seems to be working.