I hava an application in an era.  The application.xml file includes
three ejb modules, no wars.  Everything deploys nicely except for the
one ejb module that has ejb-ref's in its ejb-jar.xml.  I get: Bean
TheCustomer not found within this application. Do I need to use a
jboss.xml?  Isn't this just an internal b2b? Here are some files, to
help you understand.

Thanks,

Matt



application.xml:

<application>
 <display-name>Shipping</display-name>
 <module>
  <ejb>vehicleEjb.jar</ejb>
 </module>
 <module>
  <ejb>ticketEjb.jar</ejb>
 </module>
 <module>
  <ejb>shippingEjb.jar</ejb>
 </module>
</application>

truncated ejb-jar for ticketEjb.jar:

  <entity>
   <description>no description</description>
   <display-name>TheCustomer</display-name>
   <ejb-name>TheCustomer</ejb-name>
   <home>com.euler.ticket.customer.ejb.CustomerHome</home>
   <remote>com.euler.ticket.customer.ejb.Customer</remote>
   <ejb-class>com.euler.ticket.customer.ejb.CustomerEJB</ejb-class>
   <persistence-type>Container</persistence-type>
   .
   .
   .  
  </entity>

truncated ejb-jar for shippingEjb.jar:


<session>
   <description>no description</description>
   <display-name>TheShippingClientController</display-name>
   <ejb-name>TheShippingClientController</ejb-name>
  
<home>com.euler.shipping.control.ejb.ShippingClientControllerHome</home>
  
<remote>com.euler.shipping.control.ejb.ShippingClientController</remote>
  
<ejb-class>com.euler.shipping.control.ejb.ShippingClientControllerEJB</ejb-class>
   <session-type>Stateful</session-type>
   <transaction-type>Container</transaction-type>
   <env-entry>
    <env-entry-name>customerEvent</env-entry-name>
    <env-entry-type>java.lang.String</env-entry-type>
   
<env-entry-value>com.euler.shipping.control.ejb.CustomerHandler</env-entry-value>
   </env-entry>
   .
   .
  </session>


--
--------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Problems?:           [EMAIL PROTECTED]

Reply via email to