0 Replies Latest reply on Feb 15, 2012 2:28 AM by schipperde

    sending jms to esb-unaware and password-protected queue

    schipperde

      Hi, I would like to find out how do I send JMS to a esb-unaware queue that is password-protected? I'm using 4.10 ESB and am trying to send to JBoss AS 5.1.0.GA on another pc.

       

      My configuration is like this:

       

      <action name="notificationAction" class="org.jboss.soa.esb.actions.Notifier">

           <property name="okMethod" value="notifyOK" />

           <property name="notification-details">

                <NotificationList type="OK">

                     <target class="NotifyQueues">

                          <messageProp name="security-principal" value="JBM.SUCKER"/>

                          <messageProp name="security-credentials" value="password"/>

                          <queue jndiName="queue/testQ" jndi-URL="192.168.152.111:1099" jndi-context-factory="org.jnp.interfaces.NamingContextFactory" jndi-pkg-prefix="=org.jboss.naming:org.jnp.interfaces">

                          </queue>

                     </target>

                </NotificationList>

           </property>

      </action>

       

      The error "User null is not authenticated" appears on both ESB and JBoss AS when the message is sent. Is my configuration wrong?