Tagged Questions

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
1answer
374 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
467 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
647 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
1answer
133 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
91 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
124 views

How do I debug JmsTemplate?

I am using SpringsourceTool and the Spring framework. I have some code that uses JmsTemplate to send messages via convertAndSend(Object). I want to debug it as a Junit test. So, for the test class, ...
0
votes
0answers
209 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
451 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
95 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
241 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 ...