Re: [VOTE] Release Apache CXF Fediz 1.0.0

2012-06-20 Thread Sergey Beryozkin
+1 Cheers, Sergey On 20/06/12 00:22, Oliver Wulff wrote: It's been over 6 months since work started on Fediz and it's time for the first release. The features in this release are: * WS-Federation 1.0/1.1/1.2 * SAML 1.1/2.0 Tokens * Custom token support * Publish

Re: CXF-2.6.x - Build # 3495 - Still Failing

2012-06-20 Thread Daniel Kulp
It's a jenkins issue. Jenkins is failing to sucessfully do an svn up equivalent. Olivier is looking into it. Camel builds are failing, CXF builds failing, etc Dan On Tuesday, June 19, 2012 04:06:24 PM Sergey Beryozkin wrote: I disabled it for now. I suspect it may be caused by

Re: svn commit: r1352369 - in /cxf/trunk: api/src/main/java/org/apache/cxf/common/util/Compiler.java systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/JaxWsDynamicClientTest.java

2012-06-20 Thread Daniel Kulp
Freeman, I think the Compiler object will need to hold the temp file in and instance variable and delete it in a finally after the javac call completes. Right now, it won't delete till the end. Thus, if you end up create thousands of DynamicClients, you end up with 1000s of these until

Re: svn commit: r1352369 - in /cxf/trunk: api/src/main/java/org/apache/cxf/common/util/Compiler.java systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/JaxWsDynamicClientTest.java

2012-06-20 Thread Freeman Fang
Thanks Dan for this reminder. Revised it accordingly. Freeman On 2012-6-21, at 上午7:42, Daniel Kulp wrote: Freeman, I think the Compiler object will need to hold the temp file in and instance variable and delete it in a finally after the javac call completes. Right now, it won't delete