Hi, What would be the best approach to persisting info amongst handlers? We have a series of handlers set on server side
<handler 1> -> that does some database look up for a user and loads user profile <handler 2> -> depending on this loaded profile, perform some prep work such as decryption <handler 3> -> depending on this loaded profile, either skip or perform more work such as signature checking <actual web service> -> that does actualy work Should we store this into MessageContext.setProperty? Any other alternatives? Thanks IL