Tagged Questions

Useful links: Project website

learn more… | top users | synonyms

6
votes
2answers
455 views

jms producer performance with spring

i created a simple producer consumer simulation based on spring, jms and activemq, i'm trying to reach high performance from both sides, producers and consumers, Connection settings : ...
3
votes
0answers
160 views

How to configure ehcache.xml to use JMS + ActiveMQ + Tomcat and enable tomcat to start even if the JMS server is down?

I a using ehcache with JMS replication and ActiveMQ as a JMS server. It is currently used to cache database results with Hibernate 3.6.7 My cacheManager is configured as above: ...
3
votes
1answer
501 views

Is it possible to implement JMS, Spring and Tibco EMS on a standalone Java app?

So here's my problem! I Have a Tibco EMS topic with authentication I have a standalone app I'd like to pub and consume messages from this And I'd like to do this through Springs JMSTemplate, ...
2
votes
1answer
83 views

Does annotating a bean @DependsOn mean the dependent bean will be instantiated or initialized?

I am using Spring 3.0.2. I have two relatively simple bean definitions. One has a @PostConstruct (bean 'A') which triggers a chain of events that the @DependsOn bean (bean 'B') needs to be prepared ...
2
votes
1answer
175 views

Not seeing message properties that I set explicitly (Spring/JMS/MQ)

Two separate processes are communicating via JMS over MQ. The writer sets a string property: new MessageAction() { public void actOn(Message message) throws JMSException { ...
1
vote
1answer
82 views

Spring JMS Connections: performance considerations

I have the need to send/receive messages towards/from different topics stored on a single JMS Server. I would like to use JmsTemplate for sending and MessageListenerContainer for registering ...
1
vote
1answer
127 views

Execution of JMS message listener failed, and no ErrorHandler has been set

When I use Spring to listen to JMS messages, I receievd the above error. I am wondering how to add an Errorhandler into the JMS listener?
1
vote
1answer
248 views

Spring DefaultMessageListenerContainer - listener not reading messages on Websphere MQ

I am using Spring 3.0 - DefaultMessageListenerContainer to connect to a Websphere 6 MQ. There are some messages already present on the MQ. When I run my test, the listener implementing ...
1
vote
0answers
136 views

Spring Integration JMS Outbound adapter transaction control

in order to reach high performance production of messages with jms with transactions enabled, one needs to control the amount of messages being sent on each transaction, the larger the number the ...
1
vote
2answers
409 views

Does anyone know exactly what javax.jms.InvalidDestinationException: Not allowed to create destination means?

I am try to connect to a Tibco Ems Topic using Spring when I recieve this error. Here is the config: <jms:listener-container connection-factory="Tcf" acknowledge="auto" > ...
1
vote
0answers
162 views

Grails & JMS Spring Integration: 'selector-expression' in recipient-list-router not working

Following is the code which is not working: SampleGrailsPlugin.groovy def doWithSpring = { integration{ 'recipient-list-router'(id:'listenerRouter','input-channel':'inChannel') { ...
1
vote
1answer
864 views

Writing messages with Spring JmsTemplate using a TransactionManager

Using Spring-JMS it is possible to receive messages within an external transaction context via the DefaultMessageListenerContainer. However the only documented way to write a message is via ...
1
vote
1answer
137 views

Help with Spring and JMS. I am trying to setup a simple publisher using spring?

So I have the following publisher: import javax.jms.JMSException; import javax.jms.Message; import javax.jms.Session; import javax.jms.Topic; import org.springframework.jms.core.MessageCreator; ...
1
vote
1answer
492 views

Why does Spring have class JdbcDaoSupport, but no analagous class JmsSupport?

Why does the Spring Framework have class JdbcDaoSupport that requires a DataSource and creates a JdbcTemplate internally, but has no analagous class JmsSupport that might require a JMS ...
1
vote
1answer
804 views

Only one thread is utilized in the ThreadPoolTaskExecutor and JMS

I have a JMS Message Listener under JBoss 5.1, configured by Spring. Although the ThreadPoolTaskExecutor is configured to have a core pool size of 15, I see that only one thread is serving requests, ...
0
votes
1answer
7 views

Synchronous behavior with JMS Topic

I have below pseudo code of flow which uses queue to send the message and then listen to topic synchronously. The underlying JMS provider is Tibco EMS. //Send to Queue Connection connection = ...
0
votes
0answers
8 views

Spring DefaultMessageListenerContainer/SimpleMessageListenerContainer (JMS/AMQP) Annotation configuration

So I'm working on a project where many teams are using common services and following a common architecture. One of the services in use is messaging, currently JMS with ActiveMQ. Pretty much all teams ...
0
votes
1answer
25 views

Spring DefaultMessageListenerContainer MDP Initialization

What is the best way to perform initialization on DefaultMessageListenerContainer initialization? Currently I am waiting for first message, and keep track of it using a boolean variable, which isn't ...
0
votes
0answers
27 views

Spring JMS get target server at runtime

We are using Spring JMS in weblogic . In our JNDI Template we are specifying the target server name ,where the JMS queue exists. <bean id="jndiTemplate" ...
0
votes
2answers
50 views

Spring ActiveMQ Issue

A bit Urgent please help! Why do I get IllegalArgumentException Cannot convert value of type String to required type Product, in Spring? I read this question already as I am getting a similar ...
0
votes
1answer
44 views

Transaction Support for Springs onMessage handler

So I have some boilerplate code that consumes messages from a Topic: public void onMessage(Message message) { try { // try my conversion } catch(MyConversionException e) ...
0
votes
1answer
35 views

java.io.IOException:Unable to determine system type - response: 331 Please specify the password

We are using the quartz scheduler to run multiple jobs in our mediation server project, spring 3.0 framework, hibernate, Apache tomcat. Scheduler jobs begin to start as the tomcat container is loaded. ...
0
votes
0answers
28 views

Spring JMS single message consumer for multiple Topics

I was recently asked by a partner the pros/cons of using a single message consumer to receives messages from multiple topics vs. multiple consumers each receiving messages from different topics? ... ...
0
votes
1answer
43 views

Spring Framework JMS Destination name resolution approach

I wanted to encapsulate the details of creating / resolving a destination into some sort of DestinationResolver implementation. The details being creating a connection, creating a session, creating ...
0
votes
1answer
138 views

How to send a message from Spring WS application to WebSphere JMS Queue

I am new to the Spring web service and Websphere application server. i am working on spring web services and there is a requirement where as soon as a request comes, i need to send an XML message to ...
0
votes
0answers
107 views

How to implement a long-running Spring JMS listener (DefaultMessageListenerContainer)?

I'm looking for advice on the subject. The only hints on the web I've found pertain to message-driven beans and are: Annotating the MDB with NOT_SUPPORTED transaction type, thus making it ...
0
votes
2answers
78 views

what does the purpose of JMSTemplate.execute

Anyone can explain the real purpose of JMSTemplate.execute method. It can accept a session callback. The Spring document does not say any details about it.
0
votes
2answers
144 views

Apache Karaf 2.2.3, featuresBoot issue

Karaf 2.2.3 recently released and finally has a pre-bundled spring-jms feature. In order to make life easy I added it to the featuresBoot config property with the other defaults: ...
0
votes
2answers
116 views

Spring Configuration file error

I am trying to run a simple program using a spring configuration file. In the configuration I am creating a bean for the JMS template. When I run it from eclipse everything works perfect but if I try ...
0
votes
1answer
108 views

Spring JMS and Loading of Listener

We are using Spring JMS to read messages from an Oracle AQ queue. When we process those messages, we send them out the door to a vendor product using sockets. On startup, we need to initiate the ...
0
votes
1answer
451 views

Spring JmsTemplate & WebSphere MQ - ignoring RECEIVE_TIMEOUT_NO_WAIT

I am using Spring JmsTemplate and WebSphere MQ (inside WebSphere App Server). I create the JmsTemplate instance as follows: def templateFor(managerJndiName: String) = { val connectionFactory = ...
0
votes
2answers
1k views

How to thread pool a Spring JMS listener

I am setting up a JMS subscriber listener as follows with the goal of achieving a pool of 5 threads listening to topATopic, however, what I see at runtime is multiple consumers processing the same ...
0
votes
2answers
261 views

JmsTransactionManager with more connectionFactories

I was wondering if anyone can help me with a large problem, I'm trying to implement more jmsTransactionManagers with Spring 2.5.6, but it isn't working. I got 5 connectionfactories because i have to ...
0
votes
1answer
940 views

How to set the ActiveMQ redeliveryPolicy on a queue?

How do I set the redeliveryPolicy in ActiveMQ on a Queue? 1) In the doc, see: activeMQ Redelivery, the explain that you should set it on the ConnectionFactory or Connection. But I want to use ...