Re: NMS C# and consumer.prefetchSize

2009-10-01 Thread Timothy Bish
On Thu, 2009-10-01 at 16:10 -0700, lujan99 wrote: > > fine , thanks. When I use ClientAcknowledge it's all ok. > > Now, in a Request/Response method is safe to use same session object used to > receive message to create a producer to reply?? > Yes, however just as in JMS the NMS API recommends

Re: NMS C# and consumer.prefetchSize

2009-10-01 Thread lujan99
fine , thanks. When I use ClientAcknowledge it's all ok. Now, in a Request/Response method is safe to use same session object used to receive message to create a producer to reply?? Thanks!! magellings wrote: > > What acknowledgement mode are you using? It's my understanding if you are > u

Re: NMS C# and consumer.prefetchSize

2009-10-01 Thread magellings
What acknowledgement mode are you using? It's my understanding if you are using Transactional or ClientAcknowledge you shouldn't have this problem. With AutoAcknowledge messages are buffered on the consumer end and are lost if not processed when the consumer shuts down. lujan99 wrote: > > Aft