Return-Path: Delivered-To: apmail-incubator-cxf-commits-archive@locus.apache.org Received: (qmail 8691 invoked from network); 3 Oct 2006 14:36:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 3 Oct 2006 14:36:44 -0000 Received: (qmail 8280 invoked by uid 500); 3 Oct 2006 14:36:44 -0000 Delivered-To: apmail-incubator-cxf-commits-archive@incubator.apache.org Received: (qmail 8177 invoked by uid 500); 3 Oct 2006 14:36:43 -0000 Mailing-List: contact cxf-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-commits@incubator.apache.org Received: (qmail 8167 invoked by uid 99); 3 Oct 2006 14:36:43 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Oct 2006 07:36:43 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received: from [140.211.166.113] ([140.211.166.113:52435] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id B4/B0-08153-97572254 for ; Tue, 03 Oct 2006 07:36:41 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id C0EE61A981A; Tue, 3 Oct 2006 07:36:39 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r452514 - in /incubator/cxf/trunk: ./ distribution/src/main/java/cxfinstaller/ rt/databinding/jaxb/src/test/java/org/apache/cxf/jaxb/ systests/src/test/java/org/apache/cxf/systest/handlers/ Date: Tue, 03 Oct 2006 14:36:39 -0000 To: cxf-commits@incubator.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061003143639.C0EE61A981A@eris.apache.org> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: dkulp Date: Tue Oct 3 07:36:38 2006 New Revision: 452514 URL: http://svn.apache.org/viewvc?view=rev&rev=452514 Log: Update to woodstox 3.0.2 (slightly faster), fix eclipse warning Modified: incubator/cxf/trunk/distribution/src/main/java/cxfinstaller/Installer.java incubator/cxf/trunk/pom.xml incubator/cxf/trunk/rt/databinding/jaxb/src/test/java/org/apache/cxf/jaxb/JAXBEncoderDecoderTest.java incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/handlers/AddNumbersImpl.java Modified: incubator/cxf/trunk/distribution/src/main/java/cxfinstaller/Installer.java URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/java/cxfinstaller/Installer.java?view=diff&rev=452514&r1=452513&r2=452514 ============================================================================== --- incubator/cxf/trunk/distribution/src/main/java/cxfinstaller/Installer.java (original) +++ incubator/cxf/trunk/distribution/src/main/java/cxfinstaller/Installer.java Tue Oct 3 07:36:38 2006 @@ -81,7 +81,7 @@ if (!System.getProperty("java.version").startsWith("1.5")) { System.out.println("WARNING: Installing with Java " + System.getProperty("java.version") + "."); - System.out.println(" Celtix requires JDK 1.5 to run."); + System.out.println(" Apache CXF requires JDK 1.5 to run."); } if (args.length != 0 && "-verbose".equals(args[0])) { @@ -94,7 +94,7 @@ outputDir = new File(args[0]); } - System.out.println("Unpacking celtixfire to " + outputDir.toString()); + System.out.println("Unpacking Apache CXF to " + outputDir.toString()); URL url = Installer.class.getResource("/cxfinstaller/Installer.class"); Modified: incubator/cxf/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/pom.xml?view=diff&rev=452514&r1=452513&r2=452514 ============================================================================== --- incubator/cxf/trunk/pom.xml (original) +++ incubator/cxf/trunk/pom.xml Tue Oct 3 07:36:38 2006 @@ -359,7 +359,7 @@ woodstox wstx-asl - 2.9 + 3.0.2 javax.mail Modified: incubator/cxf/trunk/rt/databinding/jaxb/src/test/java/org/apache/cxf/jaxb/JAXBEncoderDecoderTest.java URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/databinding/jaxb/src/test/java/org/apache/cxf/jaxb/JAXBEncoderDecoderTest.java?view=diff&rev=452514&r1=452513&r2=452514 ============================================================================== --- incubator/cxf/trunk/rt/databinding/jaxb/src/test/java/org/apache/cxf/jaxb/JAXBEncoderDecoderTest.java (original) +++ incubator/cxf/trunk/rt/databinding/jaxb/src/test/java/org/apache/cxf/jaxb/JAXBEncoderDecoderTest.java Tue Oct 3 07:36:38 2006 @@ -36,6 +36,7 @@ import javax.xml.stream.XMLEventWriter; import javax.xml.stream.XMLInputFactory; import javax.xml.stream.XMLOutputFactory; +import javax.xml.stream.XMLStreamReader; import javax.xml.transform.stream.StreamSource; import javax.xml.validation.Schema; import javax.xml.validation.SchemaFactory; @@ -47,6 +48,7 @@ import junit.framework.TestCase; import org.apache.cxf.interceptor.Fault; +import org.apache.cxf.staxutils.StaxStreamFilter; import org.apache.cxf.testutil.common.TestUtil; import org.apache.hello_world_soap_http.Greeter; import org.apache.hello_world_soap_http.types.GreetMe; @@ -175,11 +177,11 @@ InputStream is = getClass().getResourceAsStream("resources/GreetMeDocLiteralReq.xml"); XMLInputFactory factory = XMLInputFactory.newInstance(); - XMLEventReader reader = - factory.createXMLEventReader(is); + XMLStreamReader reader = + factory.createXMLStreamReader(is); QName[] tags = {SOAP_ENV, SOAP_BODY}; - StaxEventFilter filter = new StaxEventFilter(tags); + StaxStreamFilter filter = new StaxStreamFilter(tags); reader = factory.createFilteredReader(reader, filter); //Remove START_DOCUMENT & START_ELEMENT pertaining to Envelope and Body Tags. Modified: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/handlers/AddNumbersImpl.java URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/handlers/AddNumbersImpl.java?view=diff&rev=452514&r1=452513&r2=452514 ============================================================================== --- incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/handlers/AddNumbersImpl.java (original) +++ incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/handlers/AddNumbersImpl.java Tue Oct 3 07:36:38 2006 @@ -43,7 +43,6 @@ */ public void addNumbers(String number1) throws AddNumbersFault { System.out.println("addNumbers called....." + number1); - return; } }