[JBoss-dev] jboss-portal-2.0-testsuite Build Completed With Testsuite Errors

2006-02-01 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-portal-2.0-testsuite?log=log20060201035602 TESTS FAILEDAnt Error Message: /services/cruisecontrol/work/scripts/build-jboss-portal.xml:67: The following error occurred while executing this line: /services/cruisecontrol/work/s

[JBoss-dev] jboss-remoting-testsuite-1.4 Build Completed With Testsuite Errors

2006-02-01 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-remoting-testsuite-1.4?log=log20060201042107 TESTS FAILEDAnt Error Message: /services/cruisecontrol/work/scripts/build-jboss-remoting.xml:96: The following error occurred while executing this line: /services/cruisecontrol/wo

[JBoss-dev] Generic Embedded/Bootstrap was RE: [JBoss-dev] EJB3StandaloneBootstrap implementation

2006-02-01 Thread Adrian Brock
FYI I am starting work on a prototype of the following three new modules (I am not sure these are good names :-) 1) Integration - Cross (other) container integration spi like "how do I bind to jndi?", give me the transaction synchronizer, etc. 2) Services - abstraction of our common container s

[JBoss-dev] jboss-remoting-testsuite-1.5 Build Completed With Testsuite Errors

2006-02-01 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-remoting-testsuite-1.5?log=log20060201085214 TESTS FAILEDAnt Error Message: /services/cruisecontrol/work/scripts/build-jboss-remoting.xml:96: The following error occurred while executing this line: /services/cruisecontrol/wo

Re: [JBoss-dev] EJB3StandaloneBootstrap implementation

2006-02-01 Thread Bill Burke
Scott M Stark wrote: How can the scanClasspath() step be optimized/skipped in say an embedded ejb3 project in jbosside where the data obtained during the scan was written out in an optimized metadata store as part of the project say? The definition of embedded is *simple*. This optimized me

[JBoss-dev] jboss-3.2-testsuite Build Failed

2006-02-01 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2-testsuite?log=log20060201110410 BUILD FAILEDAnt Error Message: /services/cruisecontrol/work/scripts/build-jboss-common.xml:220: The following error occurred while executing this line: /services/cruisecontrol/work/scripts

RE: [JBoss-dev] Generic Embedded/Bootstrap was RE: [JBoss-dev] EJB3StandaloneBootstrap implementation

2006-02-01 Thread Sacha Labourey
Hello Adrian, This is really great, that is a much needed step for the MC usage/adoption IMHO. > I am starting work on a prototype of the following three new > modules (I am not sure these are good names :-) Yeah, not sure as well, but I am not sure i have great ideas at this point. > 1) Inte

[JBoss-dev] RE: jboss-3.2-testsuite Build Failed

2006-02-01 Thread Ryan Campbell
This is ignorable, all tests passed.   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 01, 2006 10:54 AM To: Dimitris Andreadis; jboss-development@lists.sourceforge.net; QA Subject: jboss-3.2-testsuite Build Failed Importance: High   View results h

RE: [JBoss-dev] EJB3StandaloneBootstrap implementation

2006-02-01 Thread Scott M Stark
I'm saying the ide should be creating the optimized metadata view as the project evolves. Of course this is an optional behavior. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bill Burke Sent: Wednesday, February 01, 2006 10:13 AM To: jboss-development@l

[JBoss-dev] Guessing datasource name

2006-02-01 Thread Bill Burke
In EJB3 I'm trying to guess the datasource MBean name so that I can create a dependency on it. I do this based on the JNDI name passed into persistence.xml. So, if the datsource is "java:/DefaultDS" I assume that there is a: "jboss.jca:service=DataSource,name=DefaultDS" mbean available. Is

[JBoss-dev] jboss-head-jdk-matrix Build Failed

2006-02-01 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head-jdk-matrix?log=log20060201115514 BUILD FAILEDAnt Error Message: /services/cruisecontrol/work/scripts/build-jboss-common.xml:173: The value of attribute "todir" associated with an element type "copy" must not contain the

[JBoss-dev] Re: Guessing datasource name

2006-02-01 Thread Bill Burke
Can I use: "jboss.jca:service=ManagedConnectionFactory,name=DefaultDS"? Bill Burke wrote: In EJB3 I'm trying to guess the datasource MBean name so that I can create a dependency on it. I do this based on the JNDI name passed into persistence.xml. So, if the datsource is "java:/DefaultDS" I a

Re: [JBoss-dev] Guessing datasource name

2006-02-01 Thread Adrian Brock
On Wed, 2006-02-01 at 11:57, Bill Burke wrote: > In EJB3 I'm trying to guess the datasource MBean name so that I can > create a dependency on it. I do this based on the JNDI name passed into > persistence.xml. So, if the datsource is "java:/DefaultDS" I assume > that there is a: > > "jboss.jc

Re: [JBoss-dev] Re: Guessing datasource name

2006-02-01 Thread Adrian Brock
Perhaps we should just byte the bullet and fix this naming confusion? The problem is everybody's existing config that uses it. e.g. JMS and login-config.xml that reference these names. You can certainly "fix" the stylesheet and change this config in jbossjca-service.xml -ds.xml 300:-ds

Re: [JBoss-dev] Guessing datasource name

2006-02-01 Thread Bill Burke
Adrian Brock wrote: e.g. at least firebird has its own rar that is deployed this way. Yes, this *exactly* where the user was complaining. EJB3 assumes the Datasource MBean name. Don't blame me for the different names, this is legacy rubbish that dates back to 2.4.x They should really

Re: [JBoss-dev] Re: Guessing datasource name

2006-02-01 Thread Adrian Brock
On Wed, 2006-02-01 at 12:05, Bill Burke wrote: > Can I use: > > "jboss.jca:service=ManagedConnectionFactory,name=DefaultDS"? > It is the DataSourceBinding or ConnectionFactoryBinding that you want to depend upon. This is what populates JNDI. > Bill Burke wrote: > > In EJB3 I'm trying to guess

Re: [JBoss-dev] Re: Guessing datasource name

2006-02-01 Thread Bill Burke
Doesn't help me on 4.0.3SP1. What we should *really* do is create those JNDI dependencies we were arguing about before. Adrian Brock wrote: Perhaps we should just byte the bullet and fix this naming confusion? The problem is everybody's existing config that uses it. e.g. JMS and login-config.x

[JBoss-dev] jboss-head-jdk-matrix Build Failed

2006-02-01 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head-jdk-matrix?log=log20060201125533 BUILD FAILEDAnt Error Message: /services/cruisecontrol/work/scripts/build-jboss-common.xml:216: The following error occurred while executing this line: /services/cruisecontrol/work/scrip

[JBoss-dev] undeploy a dependency?

2006-02-01 Thread Bill Burke
I'm seeing start being called twice for a particular MBean and thus, I'm getting an error. I think what is happening is this: 1. deploy 'A' MBean, its dependency 'B' has not been resolved 2. Deploy 'B', resolve 'A''s dependency, call create/start 3. Undeploy 'B' 4. Deploy 'B' Is this the corr

[JBoss-dev] jboss-3.2-compatibility-matrix Build Completed With Testsuite Errors

2006-02-01 Thread qa
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2-compatibility-matrix?log=log20060202001416 TESTS FAILEDAnt Error Message: /services/cruisecontrol/work/scripts/build-jboss-common.xml:235: The following error occurred while executing this line: /services/cruisecontrol/w