try adding this to camel context file. create DefaultJMSConFactory in
weblogic if doesn't exist already.
<jee:jndi-lookup id="DefaultJMSConFactory"
jndi-name="DefaultJMSConFactory">
</jee:jndi-lookup>
<bean id="jmsDestinationResolver"
class="org.springframework.jms.support.destination.JndiDestinationResolver"/>
<bean id="jms" class="org.apache.camel.component.jms.JmsComponent">
<property name="connectionFactory" ref="DefaultJMSConFactory"/>
<property name="destinationResolver" ref="jmsDestinationResolver" />
</bean>
asindic wrote:
>
> Hi,
> I'm having problems getting a simple producer/consumer application with
> Weblogic, everything works fine with AMQ.
> There is one queue (topic), a JmsComponent and a RouteBuilder with a route
> like this
>
> from("jms:requestQueue").process(new Processor() {....}
>
> The producer is working fine, putting messages on the requestQueue, but
> there is no consumer registered that processes the messages...
> I'm really impressed why this would work with AMQ and not with Weblogic.
> Dose someone have any ideas where to look at?
>
> Regards,
> Angela.
>
--
View this message in context:
http://old.nabble.com/Problems-with-Weblogic%3A-consumer-not-listening-tp27826024p27828209.html
Sent from the Camel - Users (activemq) mailing list archive at Nabble.com.