Tagged Questions
3
votes
1answer
533 views
Spring JmsTemplate and Apache ActiveMQ, why so many connections?
I have a web application that runs text processing jobs in the background once a message is received on an ActiveMQ which is listened to by a Spring MessageListener....the problem I"m encountering is ...
3
votes
3answers
1k views
Unit testing with JMS (ActiveMQ)
How to do unit testing with JMS ? Is it some de-facto for this ?
I googled something
- Unit testing for JMS: http://activemq.apache.org/how-to-unit-test-jms-code.html
- jmsTemplate: ...
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 {
...
2
votes
2answers
1k views
Spring JmsTemplate + Security
I've just refactored some code that published to a JMS topic to use Spring's JmsTemplate class and now I'm receiving an exception stating I'm not authenticated.
Previously I created the factory, made ...
1
vote
2answers
852 views
Understanding JMS integration testing with Spring SingleConnectionFactory and CachingConnectionFactory
Please some help understanding the following:
I am using CachingConnectionFactory in my app and first used it during my jms tests to test my jms config like guaranteed delivery, rollback/commit, ...
1
vote
1answer
407 views
Weblogic JMS System Error
We're getting a JMS error which we don't have a lot to go with:
org.springframework.jms.UncategorizedJmsException:
Uncategorized exception occured during
JMS processing; nested exception is
...
1
vote
2answers
498 views
Does Spring JmsTemplate close connections by default?
I wrote a JMS application that runs within a web service in Glassfish (also deployed it in JBoss), I noticed that after I process several messages through a MessageListener MDP, the JMS server runs ...
1
vote
1answer
671 views
Creating temporary JMS jms topic in Spring
I'm trying to refactor some legacy code to use Spring to handle the jms connections to a mainframe service. I need to connect create a temporary topic for the mainframe service reply and set that as ...
1
vote
6answers
4k views
Unit testing code that sends JMS messages
i have a class that after it does some stuff, sends a JMS message.
i'd like to unit test the "stuff", but not necessarily the sending of the message.
when i run my test, the "stuff" green bars, but ...
0
votes
3answers
130 views
ACTIVEMQ- publisher subscriber hello world example
There are two programs: subscriber and publisher...
Subscriber is able to put the message onto the topic and the message is sent successfully.
When I check the activemq server on my browser it shows 1 ...
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
1answer
163 views
Spring, Multithreading and jms
Should the JmsTemplate bean be declared as a prototype bean or as a singleton? I think either option is reasonable and it seems to me it's mainly a question of how Spring implemented that bean but I ...
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
2answers
167 views
Spring JMS consumer pull
I need to implemt a pulling consumer.
Most of the examples I see are the producer pushing a message to the consumer; Assuming consumer is always up.
I want the producer to push messages to a queue ...
0
votes
0answers
211 views
Spring JMSTemplate Durable Subscriber
Can a spring JMSTemplate implementation be used as a durable subscriber? If so, any reference documentation or examples to do so would be appreciated.
0
votes
1answer
499 views
Problem while using springs TransactionSynchronizationManager
I am using spring TransactionSynchronizationManager.Using this manager I register a new Synchronization TransactionSynchronizationAdapter and I override the afterCompletion(int status) method of this ...
0
votes
1answer
100 views
Compile Error when using Spring JMS
I'm running into a compile error while trying to use Spring-JMS. A quick Google search only turned up one matching result, but I was unable to get anything useful out of it.
I'm using the following ...
0
votes
1answer
365 views
Spring 3 JmsTemplate in out queue different
org.springframework.jms.core.JmsTemplate only supports
one queue using defaultDestination.....
what do I need to do when I have different in and out bound queue?
thanks
0
votes
1answer
245 views
Unable to deque messages from Topic after the listener listens the messages in spring jms
I am sending the messages to Topic using oracle.jms.AQjmsFactory. The messages are stored in DB topic . Using DefaultMessageListenerContainer , the messages are being listen .But the problem is the ...
-3
votes
2answers
94 views
How to send SMS in my application with Spring?
I wanna send SMS with JMS and Spring ,How can I do this ?
Could you give me tutorial or sample ,may be?