I actually found the problem.   It was caused by my ejb-jar.xml entries

My entries were something like this:

<?xml version="1.0" encoding="UTF-8"?>
  | <ejb-jar version="3.0">
  |     <enterprise-beans>
  |             <session>
  |                     <ejb-name>PropertyService</ejb-name>
  |                     
<remote>com.emageon.properties.service.PropertyService</remote>
  |                     <ejb-class>
  |                             
com.emageon.properties.service.ejb.PropertyServiceBean
  |                     </ejb-class>
  |                     <session-type>Stateless</session-type>
  |                     <transaction-type>Container</transaction-type>
  |             </session>
  |     </enterprise-beans>
  | </ejb-jar>

The  tags need to be changed to <business-remote>.  Here is the corrected 
content.

<?xml version="1.0" encoding="UTF-8"?>
  | <ejb-jar version="3.0">
  | 
  |     <enterprise-beans>
  |             <session>
  |                     <ejb-name>PropertyService</ejb-name>
  |                     
<business-remote>com.emageon.properties.service.PropertyService</business-remote>
  |                     <ejb-class>
  |                             
com.emageon.properties.service.ejb.PropertyServiceBean
  |                     </ejb-class>
  |                     <session-type>Stateless</session-type>
  |                     <transaction-type>Container</transaction-type>
  |             </session>
  |     </enterprise-beans>
  | </ejb-jar>
  | 


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4203691#4203691

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4203691
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to