Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We sent message to JMS Topic using Rest API. Unfortunately the message is always coming to the JMS Queue and not to JMS Topic as expected. It seems that whatever we have done in the configuration, the message is always coming to the JMS queue and not to the JMS topic as expected. Is this a bug or are we missing something in the configuration?

This issue is found both in REST API and Proxy.

WSO2 ESB version 4.0.3 ActiveMQ version 5.5.1

Herewith is our Axis2.xml configuration:

 <transportSender name="jms" class="org.apache.axis2.transport.jms.JMSSender">

   <parameter name="CrmContactPersonTopicConnectionFactory" locked="false">
       <parameter name="java.naming.factory.initial" locked="false">org.apache.activemq.jndi.ActiveMQInitialContextFactory</parameter>
       <parameter name="java.naming.provider.url" locked="false">tcp://localhost:61616</parameter>
       <parameter name="transport.jms.DestinationType" locked="false">topic</parameter>
        <parameter name="transport.jms.DefaultReplyDestinationType" locked="false">topic</parameter>
       <parameter name="transport.jms.ConnectionFactoryJNDIName" locked="false">TopicConnectionFactory</parameter>
       <parameter name="transport.jms.ConnectionFactoryType" locked="false">topic</parameter>

       <parameter name="transport.transport.Transactionality" locked="false">jta</parameter>
        <parameter name="transport.jms.SessionTransacted" locked="false">true</parameter>
       <parameter name="transport.jms.SessionAcknowledgement" locked="false">SESSION_TRANSACTED</parameter>
    </parameter>
</transportSender>

This is the synapse configuration:

Rest API:

<api xmlns="http://ws.apache.org/ns/synapse" name="JmsTopic" context="/jmsTopic">
   <resource methods="POST" inSequence="TopicInSequence" outSequence="TopicOutSequence" faultSequence="TopicFaultSequence" />
</api>

EndPoint:

<endpoint xmlns="http://ws.apache.org/ns/synapse" name="crm.contact-person.change">
   <address uri="jms:/crm.contact-person.change?transport.jms.ConnectionFactory=CrmContactPersonTopicConnectionFactory" format="pox" >
      <suspendOnFailure>
         <progressionFactor>1.0</progressionFactor>
      </suspendOnFailure>
      <markForSuspension>
         <retriesBeforeSuspension>0</retriesBeforeSuspension>
         <retryDelay>0</retryDelay>
      </markForSuspension>
   </address>
</endpoint>

Sequences:

<sequence xmlns="http://ws.apache.org/ns/synapse" name="TopicInSequence">
   <log />
   <property name="topicEndPoint" value="crm.contact-person.change" scope="default" />
   <property name="OUT_ONLY" value="true" scope="default" />
   <property name="REST_URL_POSTFIX" value="" scope="axis2" />
   <send>
      <endpoint xmlns:ns="http://org.apache.synapse/xsd" xmlns:ns3="http://org.apache.synapse/xsd" key-expression="get-property('topicEndPoint')" />
   </send>
   <drop />
</sequence>


<sequence xmlns="http://ws.apache.org/ns/synapse" name="TopicOutSequence">
   <log level="full">
      <property name="sequenceName" value="TopicOutSequence" />
   </log>
</sequence>


<sequence xmlns="http://ws.apache.org/ns/synapse" name="TopicFaultSequence">
   <log>
      <property name="sequenceName" value="TopicFaultSequence" />
   </log>
</sequence>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.