Tagged Questions

3
votes
1answer
501 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 ...
2
votes
1answer
1k views

how to configure jms template at spring for weblogic?

as my question title, how to configure jms template at spring for weblogic? i follow an example at some website, but spring always complain about defaultDestination at JmsTemplate how to configure ...
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 ...
2
votes
2answers
855 views

JBoss doesn't sends a JmsTemplate (Spring) message

Well, actually JBoss does send the message, but only when the current transaction started by the EJB is finished. We have this problem with JBoss 4.0.3 and Spring's JmsTemplate. An EJB sends a ...
1
vote
0answers
32 views

Spring JMS injection causing application not to startup

We have a spring application that publishes and listens to queues on a remote application server. My publisher and listener which are spring based listen within our own application server. One of ...
1
vote
1answer
95 views

Lazy init not honored for JmsTemplate

We are developing a Spring-based application that utilizes JMSTemplate to send/receive JMS messages to/from the Tibco EMS Server. With the current implementation, during the TomCat start up the ...
1
vote
2answers
792 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
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
465 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
645 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
2answers
66 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
132 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
0answers
312 views

Spring JMSTemplate Caching Connection Factory time-to-Live

I am working on a project where we are using JMS, we are planning to use Spring JMS with cachingConnectionFactory. We want to avoid creating session pooling stuff. But there seems no way except for ...
0
votes
1answer
123 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
2answers
152 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
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
444 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
94 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
0answers
48 views

Spring JmsTemplate low-value x'00' characters

I am trying to send message using Spring 3 JmsTemplate to a mainframe queue. It works, but I need to substitute low-value x'00' characters with spaces...how do I do that? thanks
0
votes
1answer
357 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
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 ...
-3
votes
2answers
74 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?