Hi Experts,
I need to clarify below points for JMS adpater.It would be very helpful if you guide.
Requirement is we have a messages stored in JMS queue and need to process at day end all the messages.
So there are 2 ways which can be used as I think
1> Use Consumer based JMS proxy which will poll the IN queue in daily basis
Question: Will it poll once at daily basis for e.g 24 hrs interval and keep polling until all messages are polled and queue is empty?
Or It will poll and pick one message only and then will poll after 24 hrs only ?
2> Use http based proxy for e.g poller_proxy and use Synchronous Consume option to consume this message. Use Scheduler service daily basis to invoke this poller_proxy and and it will get the messages from Queue to process.
Question:When it will poll with option Synchronous Consume will it poll all the available messages from the queue at that time or only 1 messages at a time.
If it polls all the messages available in the queue at that time is there any limitation on number of messages polled.