1 Reply Latest reply on Jun 30, 2017 10:03 AM by mnovak

    JMS Bridge between two Wildfly 10 application servers using remote connector (NO HTTP)

    alegem

      Hi,

       

      I want to create a JMS bridge between two Wildfly 10 application servers using a remote connector. I've already managed to create a bridge using a HTTP connector (http-remoting).

       

      Does anyone know where to find a working example?

       

      Best regards,

      Alex

        • 1. Re: JMS Bridge between two Wildfly 10 application servers using remote connector (NO HTTP)
          mnovak

          Hi, there is just needed to change configuration of connection factories which are used by your JMS Bridge. They must use remote-connector instead of http-connector. It looks like:

          <remote-connector name="netty" socket-binding="messaging" />
          <remote-acceptor name="netty" socket-binding="messaging">
          <connection-factory name="RemoteConnectionFactory" ... connectors="netty"/>
          

           

          and socket binding:

          <socket-binding name="messaging" port="5445"/>
          

           

          There is also defined remote-acceptor to which remote-connector is pointing.