Re: Access to MessageContext in the implementations. (XFire to CXF question)

2007-07-18 Thread Jacob Marcus
Neat! You guys rock! On 7/17/07, Dan Diephouse <[EMAIL PROTECTED]> wrote: Additionally, in CXF you can access the Exchange object (which is the XFire MessageContext equivalent) by adding it to your web service's parameter: public String echo(String s, Exchange e) { ... } Cheers, - Dan On 7/

Re: Access to MessageContext in the implementations. (XFire to CXF question)

2007-07-17 Thread Dan Diephouse
Additionally, in CXF you can access the Exchange object (which is the XFire MessageContext equivalent) by adding it to your web service's parameter: public String echo(String s, Exchange e) { ... } Cheers, - Dan On 7/17/07, Christopher Moesel <[EMAIL PROTECTED]> wrote: Hi Jacob, I'm not sur

RE: Access to MessageContext in the implementations. (XFire to CXF question)

2007-07-17 Thread Christopher Moesel
Hi Jacob, I'm not sure how to do this without annotations. With annotations, you would do this the JAX-WS approved way, by adding this to your service implementation class: @Resource private WebServiceContext context; Then you could use the WebServiceContext object to get the message detai