Hi
from my previous posts I understood handlers are 'application scope', that is they maintain a state across different client invocations.
Actually handlers are supposed to be stateless! They should not maintain anything by themselves, rather they should be using the appropriate context to store anything required.
I have a handler intercepting both incoming and outgoing messages and unfortunately I realized that instance fields are 'reset' (see logs below). Is there any reason for this counter intuitive behavior?
So what I seem to understand is your handler implementation may not have been done in the recommended way.Have a look at this article [1] by Deepal which explains how the handlers work. -- Ajith Ranabahu [1] http://www.developer.com/services/article.php/3529321 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
