0 Replies Latest reply on Mar 27, 2008 9:41 AM by slay0

    Listening to a topic in Weblogic from a MDB running under Jb

    slay0

      Hi guys,
      I've got a following question. There is a MDB that runs under one Weblogic instance and listens to a topic in another Weblogic instance. What I have to do is to make it run under Jboss but still listen to a Weblogic topic. In case of weblogic2weblogic deployment was quiet simple - I just had to provide correct 'provider-url' and 'initial-context-factory' in weblogic-ejb-jar.xml:

      <message-driven-descriptor>
       <destination-jndi-name>xxx</destination-jndi-name>
       <initial-context-factory>weblogic.jndi.WLInitialContextFactory</initial-context-factory>
       <provider-url>t3://xxx:7001</provider-url>
      </message-driven-descriptor>


      As far as I see this can't be done that simple(just by changing name of vendor-specific xml file).
      So where do I provide those properties and what else do I do in order to make my MDB work? :)