Re: Continuations status?

2011-10-18 Thread Daniel Kulp
On Tuesday, October 18, 2011 9:05:48 AM Kent Närling wrote: > Hi, > > What is the status of CXF continuations and where do I find the best > documentation on how to use it? > > Is the support for continuations usable for production? I see some > mentionings of beta status etc but that might be ou

Re: Continuations status?

2011-10-18 Thread Kent Närling
On 18 October 2011 13:32, Daniel Kulp wrote: > > Hmmm... what you are doing should work. > > As an easy workaround, you can always call > PhaseInterceptorChain.getCurrentMessage() to get the current CXF Message > and > pull values from there. You would need to use the CXF Message.* keys > and

Re: Continuations status?

2011-10-18 Thread Daniel Kulp
Hmmm... what you are doing should work. As an easy workaround, you can always call PhaseInterceptorChain.getCurrentMessage() to get the current CXF Message and pull values from there. You would need to use the CXF Message.* keys and not the JAX-WS keys. If you want to stick with JAX-WS,

Re: Continuations status?

2011-10-18 Thread Kent Närling
Hi, thanks for the quick answer, however: On 18 October 2011 12:52, Sergey Beryozkin wrote: > Hi, > > On 18/10/11 08:51, Kent Närling wrote: > >> Also, another question: >> >> How do I get the Context without injection? >> >> We are currently not running our service in Spring, so we need to get

Re: Continuations status?

2011-10-18 Thread Sergey Beryozkin
Hi, On 18/10/11 08:51, Kent Närling wrote: Also, another question: How do I get the Context without injection? We are currently not running our service in Spring, so we need to get the Context some other way... I'm presuming you are referring to JAX-WS WebServiceContext, given that you ment

Re: Continuations status?

2011-10-18 Thread Sergey Beryozkin
Hi As far as I'm aware CXF continuations are used in the Camel and ServiceMix integration layers. I haven't heard users explicitly using continuations in their own applications but the continuations support has definitely been improved over the last couple of years, I think it's very much 'ali

Re: Continuations status?

2011-10-18 Thread Kent Närling
Also, another question: How do I get the Context without injection? We are currently not running our service in Spring, so we need to get the Context some other way... On 18 October 2011 09:05, Kent Närling wrote: > Hi, > > What is the status of CXF continuations and where do I find the best

Continuations status?

2011-10-18 Thread Kent Närling
Hi, What is the status of CXF continuations and where do I find the best documentation on how to use it? Is the support for continuations usable for production? I see some mentionings of beta status etc but that might be outdated? Also, I tried to look for documentation how to use it but the bes