XFireHome M5M6-SNAPSHOTDevelopersDeveloper Space |
The MessageContextThe MessageContext class stays with an XFire invocation from start to finish. It is useful for:
Accessing the MessageContext from your OperationIn some cases you want to be able to access XFire's MessageContext. The Invokers that come with XFire allow you to add a MessageContext variable to your operation like so: public String echo(String echo, MessageContext context) { // do something with the context... return echo; } |