RE: [JBoss-dev] Fixing the management info layer

2002-12-24 Thread Sacha Labourey
FYI, the administration console framework will use some of the JSR-77 as its
basis, so it is important to have a good layer.

 -Message d'origine-
 De : [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]De la part de
 Scott M Stark
 Envoyé : lundi, 23 décembre 2002 20:48
 À : [EMAIL PROTECTED]
 Objet : [JBoss-dev] Fixing the management info layer


 We need better management information. A lot of the JSR-77 stuff is useful
 information, the only problem was with how it was integrated, not really
 tested, and not understood by the people working on the core stuff into
 which this foreign code was interjected.


 Where applicable this should be integrated via interceptors
 and/or aspects that
 emit JMX notifications on which JSR-77 bean may be created. So the first
 step is to replace the existing JSR-77 stuff with what we
 actually need to do
 management and support of JBoss. For caches, pools, invocations,
 etc. there
 needs to be low impact asynchronous events that allow for
 collection of this
 information and rehashing statistically and historically.

 I want this working in 3.2 as well so where the aspect stuff
 cannot be used
 alternative approaches are needed.

 
 Scott Stark
 Chief Technology Officer
 JBoss Group, LLC
 

 From: David Jencks [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Monday, December 23, 2002 11:22 AM
 Subject: Management layer


  Before you do anything to the jsr-77 stuff, I'd like to know if
 we plan to
  continue to implement it.  Although I personally never got why
 it is useful
  under any circumstances, I'm willing to believe e.g. marc if he says we
  should keep it.  anyway,
 
  -- if we plan to implement it, I suggest moving directly to an mbean
  interceptor/aspect based implementation where we keep the management
  module more or less the same but replace the stuff spread all
 over the rest
  of the code with interceptors.
 
  -- if we plan to not implement it, ... remove it all.
 
  I think even a somewhat lame implementation will provide an
 easier base for
  improvement than starting over from scratch.  Do we have anyone
 interested
  in working on it?  There was a guy helping andy for a while.
 
 
  thanks
  david



 ---
 This sf.net email is sponsored by:ThinkGeek
 Welcome to geek heaven.
 http://thinkgeek.com/sf
 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-development




---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



RE: [JBoss-dev] Fixing the management info layer

2002-12-24 Thread Sacha Labourey


 FYI, I've created a forum on the topic.

 http://www.jboss.org/forums/forum.jsp?forum=160

 Scott McLaughlin, do you want to drive any of this?  Seems you've had some
 energy around this.

That would be cool, yes!

Cheers,



Sacha



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



[JBoss-dev] 3.0.5RC1 available

2002-12-24 Thread Scott M Stark
A 3.0.5 pre-release has been made available for testing. The primary purpse
is to get feedback about the latest class loader changes made to address
the outstanding IllegalAccessErrors. If you have experienced problems
with IllegalAccessErrors or LinkageErrors please try this version or the
3.2.0beta3 version. Both are available from SourceForge here:

http://sourceforge.net/project/showfiles.php?group_id=22866

If you experience any class loading related problems follow the bug
reporting proceedure described in the release notes:
http://sourceforge.net/project/shownotes.php?release_id=129789


Scott Stark
Chief Technology Officer
JBoss Group, LLC



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



[JBoss-dev] Returned Mail / Atgriezts e-pasts!

2002-12-24 Thread MAILER-DAEMON
Unfortunately, your message was not delivered.
Email address [EMAIL PROTECTED] does not exist!

Diemþçl, Jûsu e-pasts netika nosûtîts. E-pasta adrese [EMAIL PROTECTED] neeksistç!


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



[JBoss-dev] [ jboss-Bugs-658224 ] ut.rollback may not work after sqlexcept

2002-12-24 Thread noreply
Bugs item #658224, was opened at 2002-12-24 15:03
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=658224group_id=22866

Category: JBossCX
Group: v3.0 Rabbit Hole
Status: Open
Resolution: None
Priority: 5
Submitted By: David Jencks (d_jencks)
Assigned to: David Jencks (d_jencks)
Summary: ut.rollback may not work after sqlexcept

Initial Comment:
Problem found with jboss 3.0.2, following code snippet may not 
result in actual rollback even if ut.rollback called.  Reordering code 
to close connection in finally block before commit/rollback 
reported to fix the problem.  See forum thread http://
www.jboss.org/forums/thread.jsp?forum=136thread=26437

public RuleVO insert(RuleVO rule) {
UserTransaction ut = context.getUserTransaction();

DAOFactory daoFactory = DAOFactory.getDAOFactory();
Connection conn = null;

RuleVO savedRule = new RuleVO();
try {
ut.begin();
try {
conn = daoFactory.getConnection();
} catch (IllegalArgumentException ex) {
throw new EJBException(
Could not establish database connection:  + ex.getMessage());
}
savedRule = daoFactory.getRuleDAO().insert(conn, rule);
ut.commit();
} catch (SQLException e) {
try {
ut.rollback();
} catch (SystemException syex) {
throw new EJBException
(Rule insert  rollback failed:  + syex.getMessage());
}
throw new EJBException
(Rule insert failed:  + e.getMessage());
} catch (Exception ex) {
throw new EJBException
(Rule insert begin/commit transaction failed:  + 
ex.getMessage());
} finally {
try {
DAOFactory.closeConnection(conn);
} catch (SQLException ex) {
throw new EJBException(
Could not close database connection:  + ex.getMessage());
}
return savedRule;
}
}


--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=376685aid=658224group_id=22866


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



Re: [JBoss-dev] 3.0.5RC1 available

2002-12-24 Thread Remy Maucherat
Scott M Stark wrote:

A 3.0.5 pre-release has been made available for testing. The primary purpse
is to get feedback about the latest class loader changes made to address
the outstanding IllegalAccessErrors. If you have experienced problems
with IllegalAccessErrors or LinkageErrors please try this version or the
3.2.0beta3 version. Both are available from SourceForge here:

http://sourceforge.net/project/showfiles.php?group_id=22866

If you experience any class loading related problems follow the bug
reporting proceedure described in the release notes:
http://sourceforge.net/project/shownotes.php?release_id=129789


I was about to mention that a new Tomcat release was available, and that 
you should include it in newer builds.
Thanks for doing it right (as usual) :)

Remy



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AUTOMATED] (HEAD) JBoss compilation failed

2002-12-24 Thread chris

=
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net FOR DETAILS=
=

JAVA VERSION DETAILS
java version 1.3.1_06
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_06-b01)
Java HotSpot(TM) Server VM (build 1.3.1_06-b01, mixed mode)

=

HERE ARE THE LAST 50 LINES OF THE LOG FILE

Generating output for 'org.jboss.management.j2ee.RMI_IIOPResource' using template file 
'jar:file:/home/jboss/jbossci/jboss-head/xdoclet/output/lib/xdoclet-jmx-module-jb4.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are imported, xjavadoc has assumed that the 
referred classes
 belong to the same package as the referring class. The classes are:
org.jboss.management.j2ee.AppClientModule -- AppClientModuleMBean qualified to 
AppClientModuleMBean
org.jboss.management.j2ee.J2EEModule -- J2EEModuleMBean qualified to J2EEModuleMBean
org.jboss.management.j2ee.J2EEDeployedObject -- J2EEDeployedObjectMBean qualified to 
J2EEDeployedObjectMBean
org.jboss.management.j2ee.J2EEManagedObject -- J2EEManagedObjectMBean qualified to 
J2EEManagedObjectMBean
org.jboss.management.j2ee.EJB -- EJBMBean qualified to EJBMBean
org.jboss.management.j2ee.EJBModule -- EJBModuleMBean qualified to EJBModuleMBean
org.jboss.management.j2ee.EntityBean -- EntityBeanMBean qualified to EntityBeanMBean
org.jboss.management.j2ee.J2EEApplication -- J2EEApplicationMBean qualified to 
J2EEApplicationMBean
org.jboss.management.j2ee.J2EEDomain -- J2EEDomainMBean qualified to J2EEDomainMBean
org.jboss.management.j2ee.J2EEResource -- J2EEResourceMBean qualified to 
J2EEResourceMBean
org.jboss.management.j2ee.J2EEServer -- J2EEServerMBean qualified to J2EEServerMBean
org.jboss.management.j2ee.JCAConnectionFactory -- JCAConnectionFactoryMBean qualified 
to JCAConnectionFactoryMBean
org.jboss.management.j2ee.JCAManagedConnectionFactory -- 
JCAManagedConnectionFactoryMBean qualified to JCAManagedConnectionFactoryMBean
org.jboss.management.j2ee.JCAResource -- JCAResourceMBean qualified to 
JCAResourceMBean
org.jboss.management.j2ee.JDBCDataSource -- JDBCDataSourceMBean qualified to 
JDBCDataSourceMBean
org.jboss.management.j2ee.JDBCDriver -- JDBCDriverMBean qualified to JDBCDriverMBean
org.jboss.management.j2ee.JDBCResource -- JDBCResourceMBean qualified to 
JDBCResourceMBean
org.jboss.management.j2ee.JMSResource -- JMSResourceMBean qualified to 
JMSResourceMBean
org.jboss.management.j2ee.JNDIResource -- JNDIResourceMBean qualified to 
JNDIResourceMBean
org.jboss.management.j2ee.JTAResource -- JTAResourceMBean qualified to 
JTAResourceMBean
org.jboss.management.j2ee.JVM -- JVMMBean qualified to JVMMBean
org.jboss.management.j2ee.JavaMailResource -- JavaMailResourceMBean qualified to 
JavaMailResourceMBean
org.jboss.management.j2ee.MBean -- MBeanMBean qualified to MBeanMBean
org.jboss.management.j2ee.MessageDrivenBean -- MessageDrivenBeanMBean qualified to 
MessageDrivenBeanMBean
org.jboss.management.j2ee.RMI_IIOPResource -- RMI_IIOPResourceMBean qualified to 
RMI_IIOPResourceMBean
org.jboss.management.j2ee.ResourceAdapter -- ResourceAdapterMBean qualified to 
ResourceAdapterMBean
org.jboss.management.j2ee.ResourceAdapterModule -- ResourceAdapterModuleMBean 
qualified to ResourceAdapterModuleMBean
org.jboss.management.j2ee.ServiceModule -- ServiceModuleMBean qualified to 
ServiceModuleMBean
org.jboss.management.j2ee.Servlet -- ServletMBean qualified to ServletMBean
org.jboss.management.j2ee.SessionBean -- SessionBeanMBean qualified to 
SessionBeanMBean
org.jboss.management.j2ee.StatefulSessionBean -- StatefulSessionBeanMBean qualified 
to StatefulSessionBeanMBean
org.jboss.management.j2ee.StatelessSessionBean -- StatelessSessionBeanMBean qualified 
to StatelessSessionBeanMBean
org.jboss.management.j2ee.URLResource -- URLResourceMBean qualified to 
URLResourceMBean
org.jboss.management.j2ee.WebModule -- WebModuleMBean qualified to WebModuleMBean
org.jboss.management.mejb.JMSNotificationListener -- JMSNotificationListenerMBean 
qualified to JMSNotificationListenerMBean
javax.management.j2ee.ManagementHome -- EJBHome qualified to EJBHome
org.jboss.management.mejb.PollingNotificationListener -- 
PollingNotificationListenerMBean qualified to PollingNotificationListenerMBean
org.jboss.management.mejb.RMIClientNotificationListenerInterface -- Remote qualified 
to Remote
org.jboss.management.mejb.RMINotificationListener -- RMINotificationListenerMBean 
qualified to RMINotificationListenerMBean

BUILD FAILED

[JBoss-dev] [AUTOMATED] (HEAD) JBoss compilation failed

2002-12-24 Thread chris

=
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net FOR DETAILS=
=

JAVA VERSION DETAILS
java version 1.4.1_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-b01)
Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode)

=

HERE ARE THE LAST 50 LINES OF THE LOG FILE

Generating output for 'org.jboss.management.j2ee.J2EEManagedObject' using template 
file 
'jar:file:/home/jboss/jbossci/jboss-head/xdoclet/output/lib/xdoclet-jmx-module-jb4.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are imported, xjavadoc has assumed that the 
referred classes
 belong to the same package as the referring class. The classes are:
org.jboss.management.j2ee.AppClientModule -- AppClientModuleMBean qualified to 
AppClientModuleMBean
org.jboss.management.j2ee.J2EEModule -- J2EEModuleMBean qualified to J2EEModuleMBean
org.jboss.management.j2ee.J2EEDeployedObject -- J2EEDeployedObjectMBean qualified to 
J2EEDeployedObjectMBean
org.jboss.management.j2ee.J2EEManagedObject -- J2EEManagedObjectMBean qualified to 
J2EEManagedObjectMBean
org.jboss.management.j2ee.EJB -- EJBMBean qualified to EJBMBean
org.jboss.management.j2ee.EJBModule -- EJBModuleMBean qualified to EJBModuleMBean
org.jboss.management.j2ee.EntityBean -- EntityBeanMBean qualified to EntityBeanMBean
org.jboss.management.j2ee.J2EEApplication -- J2EEApplicationMBean qualified to 
J2EEApplicationMBean
org.jboss.management.j2ee.J2EEDomain -- J2EEDomainMBean qualified to J2EEDomainMBean
org.jboss.management.j2ee.J2EEResource -- J2EEResourceMBean qualified to 
J2EEResourceMBean
org.jboss.management.j2ee.J2EEServer -- J2EEServerMBean qualified to J2EEServerMBean
org.jboss.management.j2ee.JCAConnectionFactory -- JCAConnectionFactoryMBean qualified 
to JCAConnectionFactoryMBean
org.jboss.management.j2ee.JCAManagedConnectionFactory -- 
JCAManagedConnectionFactoryMBean qualified to JCAManagedConnectionFactoryMBean
org.jboss.management.j2ee.JCAResource -- JCAResourceMBean qualified to 
JCAResourceMBean
org.jboss.management.j2ee.JDBCDataSource -- JDBCDataSourceMBean qualified to 
JDBCDataSourceMBean
org.jboss.management.j2ee.JDBCDriver -- JDBCDriverMBean qualified to JDBCDriverMBean
org.jboss.management.j2ee.JDBCResource -- JDBCResourceMBean qualified to 
JDBCResourceMBean
org.jboss.management.j2ee.JMSResource -- JMSResourceMBean qualified to 
JMSResourceMBean
org.jboss.management.j2ee.JNDIResource -- JNDIResourceMBean qualified to 
JNDIResourceMBean
org.jboss.management.j2ee.JTAResource -- JTAResourceMBean qualified to 
JTAResourceMBean
org.jboss.management.j2ee.JVM -- JVMMBean qualified to JVMMBean
org.jboss.management.j2ee.JavaMailResource -- JavaMailResourceMBean qualified to 
JavaMailResourceMBean
org.jboss.management.j2ee.MBean -- MBeanMBean qualified to MBeanMBean
org.jboss.management.j2ee.MessageDrivenBean -- MessageDrivenBeanMBean qualified to 
MessageDrivenBeanMBean
org.jboss.management.j2ee.RMI_IIOPResource -- RMI_IIOPResourceMBean qualified to 
RMI_IIOPResourceMBean
org.jboss.management.j2ee.ResourceAdapter -- ResourceAdapterMBean qualified to 
ResourceAdapterMBean
org.jboss.management.j2ee.ResourceAdapterModule -- ResourceAdapterModuleMBean 
qualified to ResourceAdapterModuleMBean
org.jboss.management.j2ee.ServiceModule -- ServiceModuleMBean qualified to 
ServiceModuleMBean
org.jboss.management.j2ee.Servlet -- ServletMBean qualified to ServletMBean
org.jboss.management.j2ee.SessionBean -- SessionBeanMBean qualified to 
SessionBeanMBean
org.jboss.management.j2ee.StatefulSessionBean -- StatefulSessionBeanMBean qualified 
to StatefulSessionBeanMBean
org.jboss.management.j2ee.StatelessSessionBean -- StatelessSessionBeanMBean qualified 
to StatelessSessionBeanMBean
org.jboss.management.j2ee.URLResource -- URLResourceMBean qualified to 
URLResourceMBean
org.jboss.management.j2ee.WebModule -- WebModuleMBean qualified to WebModuleMBean
org.jboss.management.mejb.JMSNotificationListener -- JMSNotificationListenerMBean 
qualified to JMSNotificationListenerMBean
javax.management.j2ee.ManagementHome -- EJBHome qualified to EJBHome
org.jboss.management.mejb.PollingNotificationListener -- 
PollingNotificationListenerMBean qualified to PollingNotificationListenerMBean
org.jboss.management.mejb.RMIClientNotificationListenerInterface -- Remote qualified 
to Remote
org.jboss.management.mejb.RMINotificationListener -- RMINotificationListenerMBean 
qualified to RMINotificationListenerMBean

BUILD FAILED

[JBoss-dev] [ jboss-Change Notes-658296 ] FK fields mapped to PK fields support

2002-12-24 Thread noreply
Change Notes item #658296, was opened at 2002-12-24 21:20
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=381174aid=658296group_id=22866

Category: JBossCMP
Group: v3.2
Status: Open
Priority: 5
Submitted By: Alexey Loubyansky (loubyansky)
Assigned to: Nobody/Anonymous (nobody)
Summary: FK fields mapped to PK fields support

Initial Comment:
It's possible to map foreign key fields in one-to-many 
and one-to-one relationships to primary key fields. All is 
needed to assign the same names to the corresponding 
foreign and primary key fields.

Relationships are assigned between ejbCreate and 
ejbPostCreate. This means that relationships are 
accessible in ejbPostCreate and not in ejbCreate.
Relationships are established and removed only with 
creation and removal of entities. Modifications with 
abstract CMR accessors are not allowed as they 
change primary key values.

If ONE side doesn't exist CMR on the MANY side will 
return null value.
If MANY side doesn't exist CMR on the ONE side will 
return empty collection.

If cascade-delete is specified then removal of the ONE 
side will remove the related MANY side. In this case, 
ONE side is removed first breaking the relationship, i.e. 
CMR field on the MANY side in ejbRemove will return 
null.

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=381174aid=658296group_id=22866


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



[JBoss-dev] Automated JBoss(Branch_3_0) Testsuite Results: 24-December-2002

2002-12-24 Thread scott . stark


JBoss daily test results

SUMMARY

Number of tests run:   1004



Successful tests:  998

Errors:5

Failures:  1





[time of test: 2002-12-24.12-04 GMT]
[java.version: 1.3.1]
[java.vendor: Apple Computer, Inc.]
[java.vm.version: 1.3.1_03-69]
[java.vm.name: Java HotSpot(TM) Client VM]
[java.vm.info: mixed mode]
[os.name: Mac OS X]
[os.arch: ppc]
[os.version: 10.2.3]

See http://users.jboss.org/~starksm/Branch_3_0/2002-12-24.12-04
for details of this test. 

NOTE: If there are any errors shown above - this mail is only highlighting 
them - it is NOT indicating that they are being looked at by anyone.

It is assumed that whoever makes change(s) to jboss that 
break the test will be fixing the test or jboss, as appropriate!





DETAILS OF ERRORS



Suite:   LocalWrapperCleanupUnitTestCase
Test:
testAutoCommitOffInRemoteUserTx(org.jboss.test.jca.test.LocalWrapperCleanupUnitTestCase)
Type:error
Exception:   java.rmi.ServerException
Message: RemoteException occurred in server thread; nested exception is:   
java.rmi.ServerException: EJBException:; nested exception is:   
javax.ejb.EJBException: Row committed, autocommit still on!
-



Suite:   MissingClassUnitTestCase
Test:
testDeployServiceWithoutClass(org.jboss.test.jmx.test.MissingClassUnitTestCase)
Type:error
Exception:   org.jboss.deployment.DeploymentException
Message: jboss.test:name=missingclasstest is not registered.; - nested throwable: 
(javax.management.InstanceNotFoundException: jboss.test:name=missingclasstest is not 
registered.)
-



Suite:   SimpleUnitTestCase
Test:testSecureHttpInvoker(org.jboss.test.naming.test.SimpleUnitTestCase)
Type:error
Exception:   javax.security.auth.login.LoginException
Message: Missing users.properties file.
-



Suite:   SimpleUnitTestCase
Test:testLoginInitialContext(org.jboss.test.naming.test.SimpleUnitTestCase)
Type:error
Exception:   javax.naming.AuthenticationException
Message: Failed to login using protocol=testLoginInitialContext
-



Suite:   HttpsUnitTestCase
Test:testHttpsURL(org.jboss.test.security.test.HttpsUnitTestCase)
Type:error
Exception:   java.io.IOException
Message: Failed to get SSLContext for TLS algorithm
-



Suite:   BeanStressTestCase
Test:testDeadLockFromClient(org.jboss.test.deadlock.test.BeanStressTestCase)
Type:failure
Exception:   junit.framework.AssertionFailedError
Message: expected a client deadlock for AB BA
-




---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



[JBoss-dev] [AUTOMATED] (HEAD) JBoss compilation failed

2002-12-24 Thread chris

=
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net FOR DETAILS=
=

JAVA VERSION DETAILS
java version 1.3.1_06
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_06-b01)
Java HotSpot(TM) Server VM (build 1.3.1_06-b01, mixed mode)

=

HERE ARE THE LAST 50 LINES OF THE LOG FILE

Generating output for 'org.jboss.management.j2ee.RMI_IIOPResource' using template file 
'jar:file:/home/jboss/jbossci/jboss-head/xdoclet/output/lib/xdoclet-jmx-module-jb4.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are imported, xjavadoc has assumed that the 
referred classes
 belong to the same package as the referring class. The classes are:
org.jboss.management.j2ee.AppClientModule -- AppClientModuleMBean qualified to 
AppClientModuleMBean
org.jboss.management.j2ee.J2EEModule -- J2EEModuleMBean qualified to J2EEModuleMBean
org.jboss.management.j2ee.J2EEDeployedObject -- J2EEDeployedObjectMBean qualified to 
J2EEDeployedObjectMBean
org.jboss.management.j2ee.J2EEManagedObject -- J2EEManagedObjectMBean qualified to 
J2EEManagedObjectMBean
org.jboss.management.j2ee.EJB -- EJBMBean qualified to EJBMBean
org.jboss.management.j2ee.EJBModule -- EJBModuleMBean qualified to EJBModuleMBean
org.jboss.management.j2ee.EntityBean -- EntityBeanMBean qualified to EntityBeanMBean
org.jboss.management.j2ee.J2EEApplication -- J2EEApplicationMBean qualified to 
J2EEApplicationMBean
org.jboss.management.j2ee.J2EEDomain -- J2EEDomainMBean qualified to J2EEDomainMBean
org.jboss.management.j2ee.J2EEResource -- J2EEResourceMBean qualified to 
J2EEResourceMBean
org.jboss.management.j2ee.J2EEServer -- J2EEServerMBean qualified to J2EEServerMBean
org.jboss.management.j2ee.JCAConnectionFactory -- JCAConnectionFactoryMBean qualified 
to JCAConnectionFactoryMBean
org.jboss.management.j2ee.JCAManagedConnectionFactory -- 
JCAManagedConnectionFactoryMBean qualified to JCAManagedConnectionFactoryMBean
org.jboss.management.j2ee.JCAResource -- JCAResourceMBean qualified to 
JCAResourceMBean
org.jboss.management.j2ee.JDBCDataSource -- JDBCDataSourceMBean qualified to 
JDBCDataSourceMBean
org.jboss.management.j2ee.JDBCDriver -- JDBCDriverMBean qualified to JDBCDriverMBean
org.jboss.management.j2ee.JDBCResource -- JDBCResourceMBean qualified to 
JDBCResourceMBean
org.jboss.management.j2ee.JMSResource -- JMSResourceMBean qualified to 
JMSResourceMBean
org.jboss.management.j2ee.JNDIResource -- JNDIResourceMBean qualified to 
JNDIResourceMBean
org.jboss.management.j2ee.JTAResource -- JTAResourceMBean qualified to 
JTAResourceMBean
org.jboss.management.j2ee.JVM -- JVMMBean qualified to JVMMBean
org.jboss.management.j2ee.JavaMailResource -- JavaMailResourceMBean qualified to 
JavaMailResourceMBean
org.jboss.management.j2ee.MBean -- MBeanMBean qualified to MBeanMBean
org.jboss.management.j2ee.MessageDrivenBean -- MessageDrivenBeanMBean qualified to 
MessageDrivenBeanMBean
org.jboss.management.j2ee.RMI_IIOPResource -- RMI_IIOPResourceMBean qualified to 
RMI_IIOPResourceMBean
org.jboss.management.j2ee.ResourceAdapter -- ResourceAdapterMBean qualified to 
ResourceAdapterMBean
org.jboss.management.j2ee.ResourceAdapterModule -- ResourceAdapterModuleMBean 
qualified to ResourceAdapterModuleMBean
org.jboss.management.j2ee.ServiceModule -- ServiceModuleMBean qualified to 
ServiceModuleMBean
org.jboss.management.j2ee.Servlet -- ServletMBean qualified to ServletMBean
org.jboss.management.j2ee.SessionBean -- SessionBeanMBean qualified to 
SessionBeanMBean
org.jboss.management.j2ee.StatefulSessionBean -- StatefulSessionBeanMBean qualified 
to StatefulSessionBeanMBean
org.jboss.management.j2ee.StatelessSessionBean -- StatelessSessionBeanMBean qualified 
to StatelessSessionBeanMBean
org.jboss.management.j2ee.URLResource -- URLResourceMBean qualified to 
URLResourceMBean
org.jboss.management.j2ee.WebModule -- WebModuleMBean qualified to WebModuleMBean
org.jboss.management.mejb.JMSNotificationListener -- JMSNotificationListenerMBean 
qualified to JMSNotificationListenerMBean
javax.management.j2ee.ManagementHome -- EJBHome qualified to EJBHome
org.jboss.management.mejb.PollingNotificationListener -- 
PollingNotificationListenerMBean qualified to PollingNotificationListenerMBean
org.jboss.management.mejb.RMIClientNotificationListenerInterface -- Remote qualified 
to Remote
org.jboss.management.mejb.RMINotificationListener -- RMINotificationListenerMBean 
qualified to RMINotificationListenerMBean

BUILD FAILED

[JBoss-dev] [AUTOMATED] (HEAD) JBoss compilation failed

2002-12-24 Thread chris

=
==THIS IS AN AUTOMATED EMAIL - SEE http://jboss.kimptoc.net FOR DETAILS=
=

JAVA VERSION DETAILS
java version 1.4.1_01
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-b01)
Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode)

=

HERE ARE THE LAST 50 LINES OF THE LOG FILE

Generating output for 'org.jboss.management.j2ee.J2EEManagedObject' using template 
file 
'jar:file:/home/jboss/jbossci/jboss-head/xdoclet/output/lib/xdoclet-jmx-module-jb4.jar!/xdoclet/modules/jmx/resources/mbean.xdt'.
INFO:Some classes refer to other classes that were not found among the sources or 
on the classpath.
 (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
 The referring classes do not import any fully qualified classes matching 
these classes.
 However, since no packages are imported, xjavadoc has assumed that the 
referred classes
 belong to the same package as the referring class. The classes are:
org.jboss.management.j2ee.AppClientModule -- AppClientModuleMBean qualified to 
AppClientModuleMBean
org.jboss.management.j2ee.J2EEModule -- J2EEModuleMBean qualified to J2EEModuleMBean
org.jboss.management.j2ee.J2EEDeployedObject -- J2EEDeployedObjectMBean qualified to 
J2EEDeployedObjectMBean
org.jboss.management.j2ee.J2EEManagedObject -- J2EEManagedObjectMBean qualified to 
J2EEManagedObjectMBean
org.jboss.management.j2ee.EJB -- EJBMBean qualified to EJBMBean
org.jboss.management.j2ee.EJBModule -- EJBModuleMBean qualified to EJBModuleMBean
org.jboss.management.j2ee.EntityBean -- EntityBeanMBean qualified to EntityBeanMBean
org.jboss.management.j2ee.J2EEApplication -- J2EEApplicationMBean qualified to 
J2EEApplicationMBean
org.jboss.management.j2ee.J2EEDomain -- J2EEDomainMBean qualified to J2EEDomainMBean
org.jboss.management.j2ee.J2EEResource -- J2EEResourceMBean qualified to 
J2EEResourceMBean
org.jboss.management.j2ee.J2EEServer -- J2EEServerMBean qualified to J2EEServerMBean
org.jboss.management.j2ee.JCAConnectionFactory -- JCAConnectionFactoryMBean qualified 
to JCAConnectionFactoryMBean
org.jboss.management.j2ee.JCAManagedConnectionFactory -- 
JCAManagedConnectionFactoryMBean qualified to JCAManagedConnectionFactoryMBean
org.jboss.management.j2ee.JCAResource -- JCAResourceMBean qualified to 
JCAResourceMBean
org.jboss.management.j2ee.JDBCDataSource -- JDBCDataSourceMBean qualified to 
JDBCDataSourceMBean
org.jboss.management.j2ee.JDBCDriver -- JDBCDriverMBean qualified to JDBCDriverMBean
org.jboss.management.j2ee.JDBCResource -- JDBCResourceMBean qualified to 
JDBCResourceMBean
org.jboss.management.j2ee.JMSResource -- JMSResourceMBean qualified to 
JMSResourceMBean
org.jboss.management.j2ee.JNDIResource -- JNDIResourceMBean qualified to 
JNDIResourceMBean
org.jboss.management.j2ee.JTAResource -- JTAResourceMBean qualified to 
JTAResourceMBean
org.jboss.management.j2ee.JVM -- JVMMBean qualified to JVMMBean
org.jboss.management.j2ee.JavaMailResource -- JavaMailResourceMBean qualified to 
JavaMailResourceMBean
org.jboss.management.j2ee.MBean -- MBeanMBean qualified to MBeanMBean
org.jboss.management.j2ee.MessageDrivenBean -- MessageDrivenBeanMBean qualified to 
MessageDrivenBeanMBean
org.jboss.management.j2ee.RMI_IIOPResource -- RMI_IIOPResourceMBean qualified to 
RMI_IIOPResourceMBean
org.jboss.management.j2ee.ResourceAdapter -- ResourceAdapterMBean qualified to 
ResourceAdapterMBean
org.jboss.management.j2ee.ResourceAdapterModule -- ResourceAdapterModuleMBean 
qualified to ResourceAdapterModuleMBean
org.jboss.management.j2ee.ServiceModule -- ServiceModuleMBean qualified to 
ServiceModuleMBean
org.jboss.management.j2ee.Servlet -- ServletMBean qualified to ServletMBean
org.jboss.management.j2ee.SessionBean -- SessionBeanMBean qualified to 
SessionBeanMBean
org.jboss.management.j2ee.StatefulSessionBean -- StatefulSessionBeanMBean qualified 
to StatefulSessionBeanMBean
org.jboss.management.j2ee.StatelessSessionBean -- StatelessSessionBeanMBean qualified 
to StatelessSessionBeanMBean
org.jboss.management.j2ee.URLResource -- URLResourceMBean qualified to 
URLResourceMBean
org.jboss.management.j2ee.WebModule -- WebModuleMBean qualified to WebModuleMBean
org.jboss.management.mejb.JMSNotificationListener -- JMSNotificationListenerMBean 
qualified to JMSNotificationListenerMBean
javax.management.j2ee.ManagementHome -- EJBHome qualified to EJBHome
org.jboss.management.mejb.PollingNotificationListener -- 
PollingNotificationListenerMBean qualified to PollingNotificationListenerMBean
org.jboss.management.mejb.RMIClientNotificationListenerInterface -- Remote qualified 
to Remote
org.jboss.management.mejb.RMINotificationListener -- RMINotificationListenerMBean 
qualified to RMINotificationListenerMBean

BUILD FAILED