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

xmlbeans-2.6.0.pom missing in repo2

2012-11-26 Thread Aki Yoshida
I noticed the trunk build of rt/databinding/xmlbeans looks up xmlbeans-2.6.0.pom at the apache repo, but this pom file is not available there (the jar is there). http://repo2.maven.org/maven2/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.pom Does anyone know why this file is not available in

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

Release buildutils and xjc-utils...

2012-11-26 Thread Daniel Kulp
To prepare for 2.7.1/etc… releases next week, I'd like to get the buildutils and xjcutils stuff released this week. Thus, if there are no objections, I'll probably do the builds for those tomorrow. There really are just 2 sets of changes: 1) buildutils - update the checkstyle rules to work

Re: xmlbeans-2.6.0.pom missing in repo2

2012-11-26 Thread Daniel Kulp
I created: https://issues.apache.org/jira/browse/XMLBEANS-493 We'll see if they do anything about it. :-( Dan On Nov 26, 2012, at 9:09 AM, Aki Yoshida elak...@gmail.com wrote: I noticed the trunk build of rt/databinding/xmlbeans looks up xmlbeans-2.6.0.pom at the apache repo, but this

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

Re: Contributing to java2ws tool for maven

2012-11-26 Thread Daniel Kulp
This is a relatively complex thing to do as it more or less would trace through a bunch of things. The main place you would need to look is in JAXBUtils.generateJaxbSchemas. That is where the schemas are created. It's done by calling into the JAXB context which then generates the schemas.

Re: Pluggable WSDLLocators / Resolving WSDLs/XSDs from classpath

2012-11-26 Thread Daniel Kulp
On Nov 22, 2012, at 3:26 PM, Eirik Bjørsnøs eir...@gmail.com wrote: Can this be done in CXF? === What I'd really like to to is to specify/add a custom WSDLLocator which resolves paths using the classpath. WSDLLocators aren't really exposed as extensions currently.

Re: Contributing to java2ws tool for maven

2012-11-26 Thread Cristiano Costantini
Hello Daniel and thank you for your response! the indications you have given to me are a good next step, I think the best thing to do for me is taking a new debug sessions with some breakpoint on the classes you have listed. I'll try to do this on the next weekend and I hope to understand how it