Re: [JBoss-user] jboss 3.2.3 + jetty X

2004-01-07 Thread Mark Lassau
Thanks for clearing that up, there had been a number of emails and posts in the Web forums about this and us Jetty users were getting a little anxious. We do appreciate the high level of traffic on this list and the forums, coupled with "the silly season" of Xmas/ New Year (hence my late reply).

Re: [JBoss-user] Where to put an Interceptor class?

2004-01-07 Thread Bill Burke
Ok, the retry stuff is now commited to Branch_3_2 and HEAD. Look in jboss-3.2/testsuite/src/main/org/jboss/test/retry/... and jboss-3.2/testsuite/src/resources/retry/... for how to configure and implement retry handlers. Regards, Bill Jonathan.O'[EMAIL PROTECTED] wrote: Wow, Answers from B

RE: [JBoss-user] ***JBoss 3.2.2/Oracle 9i thin driver test NullPo interException on HPUX11***

2004-01-07 Thread Sasidharan, Manoj
Hello All, Is there any way to remove this module??? I mean, org.jboss.ejb.plugins.LogInterceptor. This issue showed up when we put the following in the *-ds.xml: true >>If we take-off this statement fr

Re: [JBoss-user] Fw: problem in starting jboss4.0.0dr2

2004-01-07 Thread Bill Burke
It is incomplete webservices implementation. marco mistroni wrote: Hi all, i have just downloaded jboss4.0.0dr2 and installed it, but when i ran it i got following problem. Packages waiting for a deployer: [{ 'ejb-management.jar' URL: 'file:/C:/jboss-4.0.0DR2/server/default/deploy/ejb- mana

[JBoss-user] Fw: problem in starting jboss4.0.0dr2

2004-01-07 Thread marco mistroni
Hi all,   i have just downloaded jboss4.0.0dr2 and installed it, but when i ran it i got following problem.   Packages waiting for a deployer:[{ 'ejb-management.jar' URL: 'file:/C:/jboss-4.0.0DR2/server/default/deploy/ejb-management.jar' localURL: 'file:/C:/jboss-4.0.0DR2/server/default/tmp

Re: [JBoss-user] Where to put an Interceptor class?

2004-01-07 Thread Bill Burke
Jonathan.O'[EMAIL PROTECTED] wrote: Wow, Answers from Bill and Adrian in less than 15 minutes!! I guess Interceptor is the magic word :-) I'll look at the current behaviour of TxInterceptorCMT, but I suspect we want to control this ourselves. I'll let you guys know any good ideas I get (if an

RE: [JBoss-user] Oracle Connection Pooling in 3.2.2

2004-01-07 Thread Alastair Rodgers
Out of interest, what happens if you omit min-pool-size/max-pool-size? Does this mean connections are not pooled, or does JBoss still use a pool but with some default settings instead? If the latter, where do the defaults come from? Al. > -Original Message- > From: [EMAIL PROTECTED] >

RE: [JBoss-user] Where to put an Interceptor class?

2004-01-07 Thread Scott M Stark
Or use an XMBean today in JB3.2 Scott Stark Chief Technology Officer JBoss Group, LLC -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marc Fleury Sent: Wednesday, January 07, 2004 8:40 AM To: [EMAIL PROT

Re: R: [JBoss-user] Where to put an Interceptor class?

2004-01-07 Thread Adrian Brock
On Wed, 2004-01-07 at 16:35, Giovanni Formenti wrote: > Sorry... but JBoss 3.2 can use interceptor? How?! I'm very interesting about > this! > Gio The EJB container has had interceptors since the 2.x series. Client side interceptors were introduced in 3.0 With AOP in 4.0 they can be applied to ev

RE: [JBoss-user] Where to put an Interceptor class?

2004-01-07 Thread Sacha Labourey
> Sorry... but JBoss 3.2 can use interceptor? How?! I'm very > interesting about > this! It is possible since JBoss 2.0. Take a look at conf/standardjboss.xml and the documentation, it shows how to write your own JBoss.xml file which includes such a stack definition. Cheers sacha -

RE: [JBoss-user] Where to put an Interceptor class?

2004-01-07 Thread Marc Fleury
If you are talking about an EJB then the bill/adrian answers apply. We have externalized stacks on EJB (early AOP) since the 2.x series. If you are talking about a POJO then the answer that applies is the one on pure AOP (JB4). marcf > -Original Message- > From: [EMAIL PROTECTED] >

Re: [JBoss-user] Where to put an Interceptor class?

2004-01-07 Thread Jonathan . O'Connor
Wow, Answers from Bill and Adrian in less than 15 minutes!! I guess Interceptor is the magic word :-) I'll look at the current behaviour of TxInterceptorCMT, but I suspect we want to control this ourselves. I'll let you guys know any good ideas I get (if any). Lastly, Giovanni, I'm using JBoss

R: [JBoss-user] Where to put an Interceptor class?

2004-01-07 Thread Giovanni Formenti
Sorry... but JBoss 3.2 can use interceptor? How?! I'm very interesting about this! Gio > -Messaggio originale- > Da: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] conto di Bill Burke > Inviato: mercoledi 7 gennaio 2004 17.28 > A: [EMAIL PROTECTED] > Oggetto: Re: [JBoss-user] Where to put a

Re: [JBoss-user] Where to put an Interceptor class?

2004-01-07 Thread Adrian Brock
On Wed, 2004-01-07 at 16:18, Jonathan.O'[EMAIL PROTECTED] wrote: > Hi, > We're just about to write our first interceptor (to retry deadlocked > methods), and we can't find the docs where to have the class loaded. > The best would be to have it in a jar in our EAR. Is that possible? Also, > can we

Re: [JBoss-user] Where to put an Interceptor class?

2004-01-07 Thread Bill Burke
JBoss 3.2 already retries ApplicationDeadlockExceptions. I am currently expanding the transaction interceptor to except a list of exception handlers that can decide whether or not to retry a transaction. You can define your own container configurations within a jboss.xml so your EAR requiremen

R: [JBoss-user] Where to put an Interceptor class?

2004-01-07 Thread Giovanni Formenti
I send to u an old answer to this question: > 1) Put a foobar-aop.xml file within the /deploy directory. By "foobar", > I mean any filename > > 2) Modify conf/base-aop.xml and add stuff there > > 3) Or, create a foobar.aop archive. An AOP archive is a JAR, but in the > META-INF directory there s

[JBoss-user] Where to put an Interceptor class?

2004-01-07 Thread Jonathan . O'Connor
Hi, We're just about to write our first interceptor (to retry deadlocked methods), and we can't find the docs where to have the class loaded. The best would be to have it in a jar in our EAR. Is that possible? Also, can we keep delare our own interceptor stack for our beans in this EAR too? Than

Re: [JBoss-user] Loadbalancer

2004-01-07 Thread Felipe Oliveira
hi, which jboss loadbalancer are you talking about? i am currently using mod_jk and i am not really happy about it. i didn't know jboss had its own. any ideas where i can get more info about it? thanks, felipe Björn Weis wrote: Hi, I try to use the JBoss loadbalancer, but it doesn't work.

RE: [JBoss-user] Oracle Connection Pooling in 3.2.2

2004-01-07 Thread Adrian Brock
Check docs/dtd/jboss-ds_1_0.dtd for the possible configurations. For your specific question you want something like: 10 100 Regards, Adrian On Wed, 2004-01-07 at 12:48, Mridul Jain wrote: > My file looks like this and works fine. But still I > don't know how to specify MaxSize and M

RE: [JBoss-user] Oracle Connection Pooling in 3.2.2

2004-01-07 Thread Mridul Jain
My file looks like this and works fine. But still I don't know how to specify MaxSize and MinSize, although I can see classes like XAOracleManageConnection in jboss-xa-jdbc.rar etc. XAOracleDS true

RE: [JBoss-user] Oracle Connection Pooling in 3.2.2

2004-01-07 Thread Cor Hofman
Could you post your Oracle bit of your configuration as an example? I have to upgrade to 3.2.x fairly soon and also use Oracle. I would like to avoid making te same mistakes. Thanks, Cor Hofman. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Mridul Jai

RE: [JBoss-user] Oracle Connection Pooling in 3.2.2

2004-01-07 Thread Mridul Jain
Thanx for clarifying the doubts. --- "Sasidharan, Manoj" <[EMAIL PROTECTED]> wrote: > >>Correct. You do not need to specify a pool > name. cool. > You want to take a > connection from pool > rather than datasource? Internally, it gives you > from the connection pool > for the datasource. Yes

RE: [JBoss-user] Oracle Connection Pooling in 3.2.2

2004-01-07 Thread Sasidharan, Manoj
-Original Message- From: Mridul Jain [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 1:42 AM To: [EMAIL PROTECTED] Subject: RE: [JBoss-user] Oracle Connection Pooling in 3.2.2 hi, > 2. In JBoss, you can define datasources and they > contain settings like > min/max connection

RE: [JBoss-user] Oracle Connection Pooling in 3.2.2

2004-01-07 Thread Mridul Jain
hi, > 2. In JBoss, you can define datasources and they > contain settings like > min/max connections. See *-ds.xml Yes that is what I tried, but their is a tag like mypool, which was in older versions like 2.4+ etc. But if I try defining that in newer version 3.2.2, it says name not registered e

RE: [JBoss-user] Exception in JBoss Cluster startup in JBoss3.2.3

2004-01-07 Thread Sacha Labourey
> It works now!! Since I couldn't ensure that everybody in our > NFS system is > running same version of JBoss,so I just changed the > "multicast IP" of my Great, yes, that is the simplest way to do it. > JBoss servers and now the exception is gone and the two > Jbosses are able to > recognise

RE: [JBoss-user] Exception in JBoss Cluster startup in JBoss3.2.3

2004-01-07 Thread Nishant Aggarwal
Hi Sacha, It works now!! Since I couldn't ensure that everybody in our NFS system is running same version of JBoss,so I just changed the "multicast IP" of my JBoss servers and now the exception is gone and the two Jbosses are able to recognise each other also!! Just a small query,is it possible for

[JBoss-user] Loadbalancer

2004-01-07 Thread Björn Weis
Hi, I try to use the JBoss loadbalancer, but it doesn't work. When I first request the site, I get a cookie JBoss_LB_ID Value=-2105261236 Path=/. Then I logged in the site (it's a Servlet), I get a second cookie JSESSIONID Value=96BC55116A415816CEDA33A3941A2B8C Path=/SPECjAppServer. Now I brow

RE: [JBoss-user] Oracle Connection Pooling in 3.2.2

2004-01-07 Thread Sasidharan, Manoj
Not sure if I got your question right. But here are my 2 cents: 1. Plz do not try to compare Weblogic and JBoss as WLS has connection pools and datasources are defined using pools 2. In JBoss, you can define datasources and they contain settings like min/max connections. See *-ds.xml 3. For perfor

[JBoss-user] Oracle Connection Pooling in 3.2.2

2004-01-07 Thread Mridul Jain
hi, I have been trying to create a connection pool in jboss 3.2.2 for oracle. I have exhausted all the documents and lists and got info on older versions. Infact I tried a lot of tags and options in oracle-xa-ds.xml etc, but nothing seems to work. On the contrary, I am able to connect thro' jboss-