3 Replies Latest reply on Aug 5, 2002 9:46 AM by cjhieen

    xdoclet and ejb-local-ref

    zarni

      Hello jboss-people!

      What am I doing wrong:

      I'm using xdoclet to generate my deployment descriptors.
      I've got one entity bean and one session bean... I want my session bean to be a facade
      to my local entity bean (which should have only a local interface). so this in my code:

      For the entity bean:
      * @ejb:bean name="oria/ekatalog/Party"
      * display-name="Core Party EJB"
      * type="CMP"
      * cmp-version="2.x"
      * jndi-local-name="ejb/oria/ekatalog/Party"
      * view-type="local"

      For the session bean:
      * @ejb:bean name="oria/ekatalog/EkS"
      * display-name="Ekatalog Primary Session Bean"
      * type="Stateless"
      * transaction-type="Container"
      * jndi-name="ejb/oria/ekatalog/EkS"
      * view-type="remote"
      *
      * @ejb:ejb-local-ref ejb-name="oria/ekatalog/Party"
      * ref-name="oria/ekatalog/PartyRef"


      BUT!!! xdoclet doesn't generate any ejb-refs at all!!!
      Only if i put this into the code:
      * @ejb:ejb-ref ejb-name="oria/ekatalog/Party"
      * ref-name="oria/ekatalog/PartyRef"
      then it generates:
      <ejb-ref >
      <ejb-ref-name>ejb/oria/ekatalog/PartyRef</ejb-ref-name>
      <ejb-ref-type>Entity</ejb-ref-type>
      oria.ekatalog.interfaces.PartyHome
      oria.ekatalog.interfaces.Party
      <ejb-link>oria/ekatalog/Party</ejb-link>
      </ejb-ref>

      for then session bean in ejb-jar.xml.
      But this is a reference to a remote interface... which i don't want to use...Only teh session bean should be able
      to access this bean...

      So help me friends, please...

      ...zarni...