SerotoninChase
SerotoninChase

Reputation: 424

Cannot convert active mq pooled connection factory to javax.jms.connectionfactory

I'm using spring jms template and active mq to send a message. I get the error saying cannot convert value of type org.apache.activemq.pool.PooledConnectionFactory to javax.jms.ConnectionFactory. Can somebody help me out by telling what I could be possibly doing wrong? Below is my configuration:

    <beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"     xmlns:p="http://www.springframework.org/schema/p"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans                 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd         
    http://www.springframework.org/schema/context         
    http://www.springframework.org/schema/context/spring-context-3.0.xsd
    http://www.springframework.org/schema/jms
         http://www.springframework.org/schema/jms/spring-jms.xsd
         http://activemq.apache.org/schema/core
         http://activemq.apache.org/schema/core/activemq-core.xsd">

     <bean id="jmsFactory" class="org.apache.activemq.pool.PooledConnectionFactory"     destroy-method="stop">
    <property name="connectionFactory">
      <bean class="org.apache.activemq.ActiveMQConnectionFactory">
        <property name="brokerURL">
          <value>tcp://localhost:61616</value>
        </property>
      </bean>
    </property>
  </bean>

  <!-- Spring JMS Template -->
  <bean id="jmsTemplate" class="org.springframework.jms.core.JmsTemplate">
    <property name="connectionFactory">
      <ref local="jmsFactory"/>
    </property>
    <property name="defaultDestination" ref="destination" />
  </bean>

    <bean id="destination" class="org.apache.activemq.command.ActiveMQQueue">
        <constructor-arg value="orderQueue"/>
    </bean>


    <bean id="jmsSender" class="gov.ca.dmv.AKT.integration.Beans.JMSSender">
        <property name="jmsTemplate102">
          <ref bean="jmsQueueTemplate"/>
        </property>
    </bean>

    <bean id="jmsReceiver" class="gov.ca.dmv.AKT.integration.Beans.JMSReceiver">
        <property name="jmsTemplate102">
            <ref bean="jmsQueueTemplate"/>
        </property>
    </bean>

Upvotes: 0

Views: 4742

Answers (1)

Ben ODay
Ben ODay

Reputation: 21005

looks like you have things crossed a bit, try setting these up like this instead...

<bean id="jmsConnectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory">
    <property name="brokerURL" value="tcp://localhost:61616" />
</bean>
<bean id="pooledConnectionFactory" class="org.apache.activemq.pool.PooledConnectionFactory">
    <property name="connectionFactory" ref="jmsConnectionFactory"/>
</bean>
<bean id="jmsTemplate" class="org.springframework.jms.core.JmsTemplate">
    <property name="connectionFactory" ref="pooledConnectionFactory" />
</bean>

Upvotes: 3

Related Questions