[JBoss v3.2.5, Ant v1.6.1, XDoclet v1.2.1]

I'm using XDoclet to generate most of my files and am having trouble
understanding why I am getting the following error...

===== JBoss output =============================================
14:07:09,104 WARN  [verifier] EJB spec violation: 
Bean   : Users
Section: 22.2
Warning: The Bean Provider must specify the fully-qualified name of the
Java class that implements the enterprise bean's business methods in
the <ejb-class> element.
Info   : Class not found on 'com.X.Y.Z.ejb.UsersBean':
com.X.Y.Z.ejb.UsersBean
============================================================

The ejb-jar.xml file is auto-generated by XDoclet from the tags in the
UsersBean BMP ejb.

===== UsersBean.java snippet ===================================
@ejb.bean
  name="Users"
  description="Users Bean"
  jndi-name="neXus/ejb/Users"
  view-type="both"
  type="BMP"
  primkey-field="userID"
@ejb.pk
  class="java.lang.Integer"
  generate="false"
@ejb.home
  generate="local,remote"               
  remote-class="com.pbms.rtc.neXus.ejb.UsersHome"
@ejb.interface
  generate="local,remote"
  remote-class="com.pbms.rtc.neXus.ejb.Users"
=================================================================

===== ejb-jar.xml snippet ==================================
<entity >
  <description><![CDATA[Users Bean]]></description>

  <ejb-name>Users</ejb-name>

  <home>com.X.Y.Z.ejb.UsersHome</home>
  <remote>com.X.Y.Z.ejb.Users</remote>
  <local-home>com.X.Y.Z.ejb.UsersLocalHome</local-home>
  <local>com.X.Y.Z.ejb.UsersLocal</local>

  <ejb-class>com.X.Y.Z.ejb.UsersBean</ejb-class>
  <persistence-type>Bean</persistence-type>
  <prim-key-class>java.lang.Integer</prim-key-class>
  <reentrant>False</reentrant>

</entity>
============================================================

What am I missing for tags since the ejb-jar.xml file is auto-generated?

=====
-={ Kyle }=-


                
__________________________________
Do you Yahoo!?
Yahoo! Mail Address AutoComplete - You start. We finish.
http://promotions.yahoo.com/new_mail 


-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to