Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 97241 invoked from network); 21 Mar 2006 10:41:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 21 Mar 2006 10:41:15 -0000 Received: (qmail 30549 invoked by uid 500); 21 Mar 2006 10:41:11 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 30312 invoked by uid 500); 21 Mar 2006 10:41:10 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 30292 invoked by uid 500); 21 Mar 2006 10:41:10 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 30286 invoked by uid 99); 21 Mar 2006 10:41:10 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Mar 2006 02:41:10 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 21 Mar 2006 02:41:09 -0800 Received: (qmail 96870 invoked by uid 65534); 21 Mar 2006 10:40:43 -0000 Message-ID: <20060321104043.96869.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r387484 - in /webservices/axis2/trunk/java/modules/integration/itest: org/apache/axis2/rest/ test/interop/sun/complex/ test/interop/sun/simple/ Date: Tue, 21 Mar 2006 10:40:41 -0000 To: axis2-cvs@ws.apache.org From: ruchithf@apache.org X-Mailer: svnmailer-1.0.7 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: ruchithf Date: Tue Mar 21 02:40:40 2006 New Revision: 387484 URL: http://svn.apache.org/viewcvs?rev=387484&view=rev Log: Getting itests to compile Modified: webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/rest/GetTest.java webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/rest/PostTest.java webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/rest/RESTGetTest.java webservices/axis2/trunk/java/modules/integration/itest/test/interop/sun/complex/SunGroupHMain.java webservices/axis2/trunk/java/modules/integration/itest/test/interop/sun/simple/SunGroupHMain.java Modified: webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/rest/GetTest.java URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/rest/GetTest.java?rev=387484&r1=387483&r2=387484&view=diff ============================================================================== --- webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/rest/GetTest.java (original) +++ webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/rest/GetTest.java Tue Mar 21 02:40:40 2006 @@ -16,19 +16,21 @@ package org.apache.axis2.rest; +import java.io.ByteArrayInputStream; + +import javax.xml.stream.XMLInputFactory; +import javax.xml.stream.XMLStreamException; +import javax.xml.stream.XMLStreamReader; + import junit.framework.TestCase; + import org.apache.axis2.Constants; import org.apache.axis2.addressing.EndpointReference; import org.apache.axis2.client.Options; import org.apache.axis2.client.ServiceClient; import org.apache.axis2.engine.util.TestConstants; import org.apache.ws.commons.om.OMElement; -import org.apache.ws.commons.om.impl.llom.builder.StAXOMBuilder; - -import javax.xml.stream.XMLInputFactory; -import javax.xml.stream.XMLStreamException; -import javax.xml.stream.XMLStreamReader; -import java.io.ByteArrayInputStream; +import org.apache.ws.commons.om.impl.builder.StAXOMBuilder; public class GetTest extends TestCase implements TestConstants { Modified: webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/rest/PostTest.java URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/rest/PostTest.java?rev=387484&r1=387483&r2=387484&view=diff ============================================================================== --- webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/rest/PostTest.java (original) +++ webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/rest/PostTest.java Tue Mar 21 02:40:40 2006 @@ -17,7 +17,16 @@ package org.apache.axis2.rest; +import java.io.ByteArrayInputStream; +import java.io.StringWriter; + +import javax.xml.stream.XMLInputFactory; +import javax.xml.stream.XMLOutputFactory; +import javax.xml.stream.XMLStreamException; +import javax.xml.stream.XMLStreamReader; + import junit.framework.TestCase; + import org.apache.axis2.AxisFault; import org.apache.axis2.Constants; import org.apache.axis2.addressing.EndpointReference; @@ -26,14 +35,7 @@ import org.apache.axis2.engine.util.TestConstants; import org.apache.axis2.transport.http.HTTPConstants; import org.apache.ws.commons.om.OMElement; -import org.apache.ws.commons.om.impl.llom.builder.StAXOMBuilder; - -import javax.xml.stream.XMLInputFactory; -import javax.xml.stream.XMLOutputFactory; -import javax.xml.stream.XMLStreamException; -import javax.xml.stream.XMLStreamReader; -import java.io.ByteArrayInputStream; -import java.io.StringWriter; +import org.apache.ws.commons.om.impl.builder.StAXOMBuilder; /** * Sample for synchronous single channel blocking service invocation. Modified: webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/rest/RESTGetTest.java URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/rest/RESTGetTest.java?rev=387484&r1=387483&r2=387484&view=diff ============================================================================== --- webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/rest/RESTGetTest.java (original) +++ webservices/axis2/trunk/java/modules/integration/itest/org/apache/axis2/rest/RESTGetTest.java Tue Mar 21 02:40:40 2006 @@ -1,18 +1,20 @@ package org.apache.axis2.rest; +import java.io.ByteArrayInputStream; + +import javax.xml.stream.XMLInputFactory; +import javax.xml.stream.XMLStreamException; +import javax.xml.stream.XMLStreamReader; + import junit.framework.TestCase; + import org.apache.axis2.Constants; import org.apache.axis2.addressing.EndpointReference; import org.apache.axis2.client.Options; import org.apache.axis2.client.ServiceClient; import org.apache.axis2.engine.util.TestConstants; import org.apache.ws.commons.om.OMElement; -import org.apache.ws.commons.om.impl.llom.builder.StAXOMBuilder; - -import javax.xml.stream.XMLInputFactory; -import javax.xml.stream.XMLStreamException; -import javax.xml.stream.XMLStreamReader; -import java.io.ByteArrayInputStream; +import org.apache.ws.commons.om.impl.builder.StAXOMBuilder; //This Sample test Client is written for Yahoo Web Search Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/sun/complex/SunGroupHMain.java URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/sun/complex/SunGroupHMain.java?rev=387484&r1=387483&r2=387484&view=diff ============================================================================== --- webservices/axis2/trunk/java/modules/integration/itest/test/interop/sun/complex/SunGroupHMain.java (original) +++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/sun/complex/SunGroupHMain.java Tue Mar 21 02:40:40 2006 @@ -16,13 +16,20 @@ package test.interop.sun.complex; +import java.io.InputStream; + +import javax.xml.stream.XMLInputFactory; +import javax.xml.stream.XMLStreamException; + import junit.framework.TestCase; + import org.apache.ws.commons.om.OMElement; import org.apache.ws.commons.om.OMXMLParserWrapper; -import org.apache.ws.commons.om.impl.llom.exception.XMLComparisonException; +import org.apache.ws.commons.om.impl.exception.XMLComparisonException; import org.apache.ws.commons.om.impl.llom.util.XMLComparator; import org.apache.ws.commons.soap.SOAPEnvelope; -import org.apache.ws.commons.soap.impl.llom.builder.StAXSOAPModelBuilder; +import org.apache.ws.commons.soap.impl.builder.StAXSOAPModelBuilder; + import test.interop.sun.round4.complex.EchoBaseStructFaultClientutil; import test.interop.sun.round4.complex.EchoBlockingClient; import test.interop.sun.round4.complex.EchoExtendedStructFaultClientUtil; @@ -30,10 +37,6 @@ import test.interop.sun.round4.complex.EchoMultipleFaults2ClientUtil; import test.interop.sun.round4.complex.EchoSOAPStructFaultClientUtil; import test.interop.sun.round4.complex.SunGroupHClientUtil; - -import javax.xml.stream.XMLInputFactory; -import javax.xml.stream.XMLStreamException; -import java.io.InputStream; public class SunGroupHMain extends TestCase { EchoBlockingClient client=null; Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/sun/simple/SunGroupHMain.java URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/sun/simple/SunGroupHMain.java?rev=387484&r1=387483&r2=387484&view=diff ============================================================================== --- webservices/axis2/trunk/java/modules/integration/itest/test/interop/sun/simple/SunGroupHMain.java (original) +++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/sun/simple/SunGroupHMain.java Tue Mar 21 02:40:40 2006 @@ -1,12 +1,19 @@ package test.interop.sun.simple; +import java.io.InputStream; + +import javax.xml.stream.XMLInputFactory; +import javax.xml.stream.XMLStreamException; + import junit.framework.TestCase; + import org.apache.ws.commons.om.OMElement; import org.apache.ws.commons.om.OMXMLParserWrapper; -import org.apache.ws.commons.om.impl.llom.exception.XMLComparisonException; +import org.apache.ws.commons.om.impl.exception.XMLComparisonException; import org.apache.ws.commons.soap.SOAPEnvelope; -import org.apache.ws.commons.soap.impl.llom.builder.StAXSOAPModelBuilder; +import org.apache.ws.commons.soap.impl.builder.StAXSOAPModelBuilder; + import test.interop.sun.round4.simple.EchoBlockingClient; import test.interop.sun.round4.simple.util.EchoEmptyFaultClientUtil; import test.interop.sun.round4.simple.util.EchoIntArrayFaultClientUtil; @@ -17,10 +24,6 @@ import test.interop.sun.round4.simple.util.EchoStringFaultClientUtil; import test.interop.sun.round4.simple.util.SunGroupHClientUtil; import test.interop.util.XMLComparatorInterop; - -import javax.xml.stream.XMLInputFactory; -import javax.xml.stream.XMLStreamException; -import java.io.InputStream; public class SunGroupHMain extends TestCase{