Because multiple instances of my MDB might be concurrently instantiated by an application server when messages arrive the JMS queue. For example, I config my server so that it can have 100 threads running simultaneously. Each thread will possibly make a single call to the 3rd party component. Thus during one second, the component would possibly be called more than 50 times.
Main Topics
Browse All Topics





by: CEHJPosted on 2007-02-18 at 09:10:48ID: 18558948
Why not just sleep(20) the Thread in which the call is made?