Re: CXF Continuations Not Portable Issue

2012-11-27 Thread Richard Opalka
Hi Sergey, On 11/26/2012 04:58 PM, Sergey Beryozkin wrote: Hi Richard On 26/11/12 15:05, Richard Opalka wrote: Hi Sergey, On 11/26/2012 02:57 PM, Richard Opalka wrote: Hi Sergey, On 11/26/2012 01:31 PM, Sergey Beryozkin wrote: Hi Richard On 26/11/12 12:29, Richard Opalka wrote: Hi

Re: CXF Continuations Not Portable Issue

2012-11-27 Thread Sergey Beryozkin
Hi Richard On 27/11/12 08:12, Richard Opalka wrote: Hi Sergey, On 11/26/2012 04:58 PM, Sergey Beryozkin wrote: Hi Richard On 26/11/12 15:05, Richard Opalka wrote: Hi Sergey, On 11/26/2012 02:57 PM, Richard Opalka wrote: Hi Sergey, On 11/26/2012 01:31 PM, Sergey Beryozkin wrote: Hi Richard

CXF Continuations Not Portable Issue

2012-11-26 Thread Richard Opalka
Dear CXF developers, I'm analyzing our recent CXF continuation related failures in CI and I identified the following problem: SVN commit id: 1409193 introduced --- @@ -57,32 +57,30 @@ public class Servlet3ContinuationProvider implements ContinuationProvider { if (continuation ==

Re: CXF Continuations Not Portable Issue

2012-11-26 Thread Sergey Beryozkin
Hi Richard On 26/11/12 12:15, Richard Opalka wrote: Dear CXF developers, I'm analyzing our recent CXF continuation related failures in CI and I identified the following problem: SVN commit id: 1409193 introduced --- @@ -57,32 +57,30 @@ public class Servlet3ContinuationProvider implements

Re: CXF Continuations Not Portable Issue

2012-11-26 Thread Richard Opalka
Hi Sergey, On 11/26/2012 01:21 PM, Sergey Beryozkin wrote: Hi Richard On 26/11/12 12:15, Richard Opalka wrote: Dear CXF developers, I'm analyzing our recent CXF continuation related failures in CI and I identified the following problem: SVN commit id: 1409193 introduced --- @@

Re: CXF Continuations Not Portable Issue

2012-11-26 Thread Sergey Beryozkin
More comments below, On 26/11/12 12:21, Sergey Beryozkin wrote: Hi Richard On 26/11/12 12:15, Richard Opalka wrote: Dear CXF developers, I'm analyzing our recent CXF continuation related failures in CI and I identified the following problem: SVN commit id: 1409193 introduced --- @@ -57,32

Re: CXF Continuations Not Portable Issue

2012-11-26 Thread Sergey Beryozkin
Hi Richard On 26/11/12 12:29, Richard Opalka wrote: Hi Sergey, On 11/26/2012 01:21 PM, Sergey Beryozkin wrote: Hi Richard On 26/11/12 12:15, Richard Opalka wrote: Dear CXF developers, I'm analyzing our recent CXF continuation related failures in CI and I identified the following

Re: CXF Continuations Not Portable Issue

2012-11-26 Thread Richard Opalka
Hi Sergey, On 11/26/2012 01:31 PM, Sergey Beryozkin wrote: Hi Richard On 26/11/12 12:29, Richard Opalka wrote: Hi Sergey, On 11/26/2012 01:21 PM, Sergey Beryozkin wrote: Hi Richard On 26/11/12 12:15, Richard Opalka wrote: Dear CXF developers, I'm analyzing our recent CXF

Re: CXF Continuations Not Portable Issue

2012-11-26 Thread Richard Opalka
Hi Sergey, On 11/26/2012 02:57 PM, Richard Opalka wrote: Hi Sergey, On 11/26/2012 01:31 PM, Sergey Beryozkin wrote: Hi Richard On 26/11/12 12:29, Richard Opalka wrote: Hi Sergey, On 11/26/2012 01:21 PM, Sergey Beryozkin wrote: Hi Richard On 26/11/12 12:15, Richard Opalka wrote: Dear

Re: CXF Continuations Not Portable Issue

2012-11-26 Thread Sergey Beryozkin
Hi Richard On 26/11/12 15:05, Richard Opalka wrote: Hi Sergey, On 11/26/2012 02:57 PM, Richard Opalka wrote: Hi Sergey, On 11/26/2012 01:31 PM, Sergey Beryozkin wrote: Hi Richard On 26/11/12 12:29, Richard Opalka wrote: Hi Sergey, On 11/26/2012 01:21 PM, Sergey Beryozkin wrote: Hi

Re: CXF Continuations Not Portable Issue

2012-11-26 Thread Daniel Kulp
Any idea if something as simple as: void startAsyncAgain() { AsyncContext old = context; try { context = req.startAsync(); } catch (IllegalStateException ex) { context = old; } context.addListener(this); } or similar would allow it to work for both JBoss