Hello,

how can i access the message context from a service method.
I need access to properties which i have set in a handler before. I noticed the example in the user guide :

-------------------------------------------------------
public String echo(String echo, MessageContext context)
{
    // do something with the context...

    return echo;
}

-------------------------------------------------------
Does this example mean that i must populate the MessageContext variable in all of my public interfaces ? Is there a better solution to share variables between Handlers and Services ?

Oliver

Reply via email to