I'm trying to build my first andromda project, but even with "BUILD SUCCESSFULL", JBOSS can't deploy my application. However, with ant, I get the following messages from ejbdoclet :

...

[ejbdoclet] Generating jboss.xml.
[ejbdoclet] Generating jbosscmp-jdbc.xml.
[ejbdoclet] INFO: Some classes refer to other classes that were not found among the sources or on the classpath.
[ejbdoclet] (Perhaps the referred class doesn't exist? Hasn't been generated yet?)
[ejbdoclet] The referring classes do not import any fully qualified classes matching these classes.
[ejbdoclet] However, since no packages are imported, xjavadoc has assumed that the referred classes
[ejbdoclet] belong to the same package as the referring class. The classes are:
[ejbdoclet] /home/p-fosse/Dev/build/gensrc/org/myorganisation/sgd/identification/acces/GestionModulesServiceBean.java --> ExceptionGestionModules qualified to org.myorganisation.sgd.identification.acces.ExceptionGestionModules
[ejbdoclet] /home/p-fosse/Dev/build/gensrc/org/myorganisation/sgd/identification/supervision/SupervisionServiceBean.java --> ExceptionSupervision qualified to org.myorganisation.sgd.identification.supervision.ExceptionSupervision
[ejbdoclet] /home/p-fosse/Dev/build/gensrc/org/myorganisation/sgd/identification/acces/GestionUtilisateursServiceBean.java --> ExceptionGestionUtilisateurs qualified to org.myorganisation.sgd.identification.acces.ExceptionGestionUtilisateurs
[ejbdoclet] /home/p-fosse/Dev/build/gensrc/org/myorganisation/sgd/identification/acces/GestionRolesServiceBean.java --> ExceptionGestionRoles qualified to org.myorganisation.sgd.identification.acces.ExceptionGestionRoles
[ejbdoclet] /home/p-fosse/Dev/build/gensrc/org/myorganisation/sgd/identification/acces/GestionAccesServiceBean.java --> ExceptionGestionAcces qualified to org.myorganisation.sgd.identification.acces.ExceptionGestionAcces
[ejbdoclet] /home/p-fosse/Dev/build/gensrc/org/myorganisation/sgd/identification/acces/RoleBean.java --> ExceptionGestionRoles qualified to org.myorganisation.sgd.identification.acces.ExceptionGestionRoles


...

and JBOSS returns me the following messages at deployment time :

12:39:41,669 INFO [MainDeployer] Starting deployment of package: file:/home/p-fosse/jboss-3.2.3/server/default/deploy/syst-gest-doc.ear
12:39:41,991 INFO [EARDeployer] Init J2EE application: file:/home/p-fosse/jboss-3.2.3/server/default/deploy/syst-gest-doc.ear
12:39:46,861 WARN [verifier] EJB spec violation:
Bean : Module
Method : public abstract Collection rechercherTous() throws FinderException
Section: 12.2.11
Warning: Each local home method must match a method defined in the entity bean class.


12:39:46,895 WARN [verifier] EJB spec violation:
Bean : Role
Method : public abstract Collection rechercherTous() throws FinderException
Section: 12.2.11
Warning: Each local home method must match a method defined in the entity bean class.


12:39:46,908 WARN [verifier] EJB spec violation:
Bean : Utilisateur
Method : public abstract Collection rechercherTous() throws FinderException
Section: 12.2.11
Warning: Each local home method must match a method defined in the entity bean class.


12:39:46,911 WARN [verifier] EJB spec violation:
Bean : Utilisateur
Method : public abstract Collection rechercherUtilisateur(String) throws FinderException
Section: 12.2.11
Warning: Each local home method must match a method defined in the entity bean class.


12:39:46,974 ERROR [MainDeployer] could not create deployment: file:/home/p-fosse/jboss-3.2.3/server/default/tmp/deploy/tmp24265syst-gest-doc.ear-contents/ejb.jar
org.jboss.deployment.DeploymentException: Verification of Enterprise Beans failed, see above for error messages.
at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:491)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:786)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:778)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:641)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
at sun.reflect.GeneratedMethodAccessor18.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
at $Proxy6.deploy(Unknown Source)
at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:302)
at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:476)
at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:201)
at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:212)
at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:191)
12:39:47,008 ERROR [MainDeployer] could not create deployment: file:/home/p-fosse/jboss-3.2.3/server/default/deploy/syst-gest-doc.ear
org.jboss.deployment.DeploymentException: Verification of Enterprise Beans failed, see above for error messages.
at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:491)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:786)
at org.jboss.deployment.MainDeployer.create(MainDeployer.java:778)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:641)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
at sun.reflect.GeneratedMethodAccessor18.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
at $Proxy6.deploy(Unknown Source)
at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:302)
at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:476)
at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:201)
at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:212)
at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:191)



-- Pascal Fosse ([EMAIL PROTECTED])

####################################################
# Dans le monde, vivent 10 cat�gories de gens :
#   - ceux qui comprennent le binaire
#   - les autres
####################################################



-------------------------------------------------------
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
_______________________________________________
Andromda-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/andromda-user

Reply via email to