Results 1 to 2 of 2

Thread: durable subscription in Spring Integration

  1. #1
    Join Date
    Jun 2010
    Posts
    13

    Default durable subscription in Spring Integration

    Hi,

    While using DefaultMessageListenerContainer,
    <bean id="topicSubscriberContainer" class="org.springframework.jms.listener.DefaultMes sageListenerContainer">
    <property name="connectionFactory" ref="activeMQConnectionURL"/>
    <property name="clientId" value="topicClient1" />
    <property name="destination" ref="topicName"/>
    <property name="subscriptionDurable" value="true" />
    <property name="messageListener" ref="topicSubscriber" />
    <property name="sessionTransacted" value="true"></property>
    </bean>


    we were able to set subscriptionDurable, clientID values and sessionTransacted values.

    Now, we want to shift to the message-driven-channel-adapter.
    I dont know where to add the subscriptionDurable, clientID and sessionTransacted values.

    Can any one explain us ?

    Thanks,
    Radha

  2. #2
    Join Date
    Dec 2010
    Location
    Tehran
    Posts
    48

    Default

    I have a similar problem.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •