DefaultMessageListenerContainer instantiation
I am getting the following error when instantiating the Jms MessageListener from the applicationContext.xml: Code: org.springframework.beans.factory.BeanCreationException: Error creating bean with name...
View ArticleConfiguring JMS Topic using Spring Integration
Hi, Can someone please provide me some samples on how to configure JMS Topic using Spring integration? I want to publish a message in a topic and have multiple subscribers listen to that topic and...
View ArticlePerformance issues with Spring & Jms:ActiveMQ
I am running some POC on Active MQ using spring configuration: I am encountering some serious performance issues: I am testing a point-to-point between two processes. client-server : client sending...
View ArticleJMS Error [JBossASKernel] jndi:null [JBossASKernel] Class:javax.jms.MessageList
Hi everybody! I try to run code of book EJB3 in Action chapter 4 MDB link source code http://www.mediafire.com/?kleippoyax1p7x5 and i get a error 05:56:48,466 INFO [Ejb3DependenciesDeployer]...
View ArticleSpring-JMS with Glassfish Exception
Hi, I have an application which is built using spring-jms and I am trying to get it to work with Glassfish. When I deploy my app I get the following exception: Code: Caused by: javax.jms.JMSException:...
View ArticleJmstemplate is a bottle neck in performance
Hi, i am comparing the performance of active mq using spring and with out spring. it seems that with spring is much slower. It looks like the problem is with sending and not receiving. When i use...
View ArticleSpring JMS (Glassfish) Redelivery Problem
Hi, I have set the property <property name="sessionTransacted" value="true" /> on the DefaultMessageListenerContainer bean. Within my message listener I have thrown a runtime exception but the...
View ArticleHow to configure JMS listener with customized queues
Dear all, I'm making an application that listen to different queues according to each consumer, the queue(s) each consumer will listen to will be provided in a resource file, I want to make the...
View ArticleJmsTemplate and generics
I'm a bit unhappy with the API of JmsTemplate and MessageConverter and wanted to ask whether it would be possible to make some changes for Spring 4.0. Basically because MessageConverter is not generic...
View ArticleNo buffer space available
Running a DefaultMessageListenerContainer on Windows 7 under Weblogic we are seeing all available ports being allocated with consequent connection failures and rollbacks. Any indications how to handle...
View ArticleJMS Sending message from one Weblogic domain to a queue on another domain
I am trying to send a message from a Weblogic 10.3.4 domain to a JMS queue hosted in another Weblogic 10.3.4 domain. Both domains run on the same host. I have been able to write a simple Java program...
View ArticleOracle AQ: mapping String to CLOB with StructMapper
Hi all, Today i tried to enqueue an Oracle_queue using JmsTemplete. My oracle object contains clob while my java object contains String. With the spring converter I got a Jms exception telling me that...
View ArticleHow do I Autostart DefaultMessageListenerContainer?
I am attempting to autostart my DMLC. In another app we do it fine, but this one must be different. My configuration is below. I am attempting to set "autoStartup" but that does not seem to work. Am I...
View Articlejms outbound gateway doesn't pick up repy
Hi! Maybe it's a stupid question and I'm missing something very simple, but I'm really stuck. I'm using ActiveMQ 5.5.1 and SI 2.1.4 My configs snippets: ---SERVER--- Code: <beans:bean...
View ArticleWebsphere 7.0 and com.ibm.ws.sib.api.jms.JmsInternalCons
Hello there I've got a DefaultMessageListenerContainer hooked up to a JMS Topic provided via webspheres default messaging provider, I can successfully put a message on the topic but it seems that be...
View ArticleBatchMessageListenerContainer
Hi, I was a question, and I have got answer. This answer contains a class, what I would be use. I want to try it, but I can't find the class: org.springframework.batch.container.jms.BatchMessa...
View ArticleSimpleMessageConverter and default conversion of JMSMessage and SpringIntMessage
Here is piece of XML config: Code: <splitter id="fileToStringsSplitter" input-channel="inboundFileChannel" output-channel="inboundStringChannel" ref="inboundFileToStringsSplitter" />...
View ArticleRetrieving JMS MapMessage from ActiveMQ with Spring-Integration
Good Morning, I'm developing comunication between a Server and a Node applications using ActiveMQ and JMS MapMessages. On Server i'm using Spring-Integration to retrieve messages from a Queue. On Node...
View ArticleStandalone java transaction management
Hi, I am using DMLC for receiving messages in a standalone application. how to synchronize my database transaction and JMS transaction? Below is the context xml Code: <bean...
View Articleobtaining jms connection to external weblogic server via jndi
Hi, I'm using spring 3.2.2 to obtain connection factory for jms Code: <!-- looking through jndi --> <bean id="jndiTemplate" class="org.springframework.jndi.JndiTemplate"> <property...
View Article