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 and the consumer to consume those messages on its own schedule. My consumer has a off hours calender and cannot process requests during off hours.

How would I configure that in spring.

TIA

Raghu

link|improve this question
feedback

2 Answers

Use message driven POJOs and JMS.

link|improve this answer
updated link: static.springsource.org/spring/docs/3.0.x/… – Ruggs Sep 20 '11 at 21:05
feedback

The onMessage is a server push, The message is processed as soon as it is delivered to the client. I want the client to decide when it wants to pull the message and process it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.