rubys 02/05/23 04:24:23
Modified: java/test/wsdl/interop3/compound1 Compound1TestCase.java
SoapInteropCompound1BindingImpl.java build.xml
java/test/wsdl/interop3/compound2 Compound2TestCase.java
SoapInteropCompound2BindingImpl.java build.xml
java/test/wsdl/interop3/docLit DocLitTestCase.java
WSDLInteropTestDocLitPortBindingImpl.java build.xml
java/test/wsdl/interop3/docLitParam build.xml
java/test/wsdl/interop3/import1 build.xml
java/test/wsdl/interop3/import2 build.xml
java/test/wsdl/interop3/import3 build.xml
java/test/wsdl/interop3/rpcEnc build.xml
Log:
Get interop3 to build again
Revision Changes Path
1.6 +2 -2
xml-axis/java/test/wsdl/interop3/compound1/Compound1TestCase.java
Index: Compound1TestCase.java
===================================================================
RCS file:
/home/cvs/xml-axis/java/test/wsdl/interop3/compound1/Compound1TestCase.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- Compound1TestCase.java 11 Mar 2002 05:03:30 -0000 1.5
+++ Compound1TestCase.java 23 May 2002 11:24:22 -0000 1.6
@@ -36,7 +36,7 @@
}
public void testStep3() {
- SoapInteropCompound1Binding binding;
+ SoapInteropCompound1PortType binding;
try {
if (url != null) {
binding = new Compound1Locator().getSoapInteropCompound1Port(url);
@@ -73,7 +73,7 @@
/*
public void testStep5() {
- SoapInteropCompound1Binding binding;
+ SoapInteropCompound1PortType binding;
try {
binding = new Compound1Locator().getSoapInteropCompound1Port(new
java.net.URL("http://localhost:8080/axis/services/SoapInteropImport1Port"));
}
1.2 +1 -1
xml-axis/java/test/wsdl/interop3/compound1/SoapInteropCompound1BindingImpl.java
Index: SoapInteropCompound1BindingImpl.java
===================================================================
RCS file:
/home/cvs/xml-axis/java/test/wsdl/interop3/compound1/SoapInteropCompound1BindingImpl.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- SoapInteropCompound1BindingImpl.java 27 Feb 2002 23:00:15 -0000 1.1
+++ SoapInteropCompound1BindingImpl.java 23 May 2002 11:24:22 -0000 1.2
@@ -7,7 +7,7 @@
package test.wsdl.interop3.compound1;
-public class SoapInteropCompound1BindingImpl implements
test.wsdl.interop3.compound1.SoapInteropCompound1Binding {
+public class SoapInteropCompound1BindingImpl implements
test.wsdl.interop3.compound1.SoapInteropCompound1PortType {
public test.wsdl.interop3.compound1.xsd.Person
echoPerson(test.wsdl.interop3.compound1.xsd.Person xPerson) throws
java.rmi.RemoteException {
return xPerson;
}
1.8 +3 -3 xml-axis/java/test/wsdl/interop3/compound1/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/compound1/build.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- build.xml 11 Mar 2002 05:06:04 -0000 1.7
+++ build.xml 23 May 2002 11:24:22 -0000 1.8
@@ -2,7 +2,7 @@
<property name="root.dir" value="../../../.."/>
<path id="test-classpath">
- <pathelement location="${root.dir}/${build.dest}" />
+ <pathelement location="${build.dest}" />
<pathelement path="${java.class.path}" />
<pathelement location="${java.home}/../lib/tools.jar"/>
<fileset dir="${root.dir}/lib">
@@ -29,8 +29,8 @@
todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
<!-- compile the skeletons -->
- <javac srcdir="${root.dir}/${build.dir}/work"
- destdir="${root.dir}/${build.dest}" debug="on">
+ <javac srcdir="${build.dir}/work"
+ destdir="${build.dest}" debug="on">
<classpath refid="test-classpath" />
<include name="test/wsdl/interop3/${testname}/*.java" />
</javac>
1.2 +2 -2
xml-axis/java/test/wsdl/interop3/compound2/Compound2TestCase.java
Index: Compound2TestCase.java
===================================================================
RCS file:
/home/cvs/xml-axis/java/test/wsdl/interop3/compound2/Compound2TestCase.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Compound2TestCase.java 28 Feb 2002 18:25:21 -0000 1.1
+++ Compound2TestCase.java 23 May 2002 11:24:22 -0000 1.2
@@ -6,7 +6,7 @@
import test.wsdl.interop3.compound2.xsd.Employee;
import test.wsdl.interop3.compound2.xsd.Person;
import test.wsdl.interop3.compound2.Compound2Locator;
-import test.wsdl.interop3.compound2.SoapInteropCompound2Binding;
+import test.wsdl.interop3.compound2.SoapInteropCompound2PortType;
/*
<!-- SOAP Builder's round III web services -->
@@ -39,7 +39,7 @@
}
public void testStep3() {
- SoapInteropCompound2Binding binding;
+ SoapInteropCompound2PortType binding;
try {
if (url != null) {
binding = new Compound2Locator().getSoapInteropCompound2Port(url);
1.4 +1 -1
xml-axis/java/test/wsdl/interop3/compound2/SoapInteropCompound2BindingImpl.java
Index: SoapInteropCompound2BindingImpl.java
===================================================================
RCS file:
/home/cvs/xml-axis/java/test/wsdl/interop3/compound2/SoapInteropCompound2BindingImpl.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- SoapInteropCompound2BindingImpl.java 28 Feb 2002 18:25:21 -0000 1.3
+++ SoapInteropCompound2BindingImpl.java 23 May 2002 11:24:22 -0000 1.4
@@ -8,7 +8,7 @@
package test.wsdl.interop3.compound2;
-public class SoapInteropCompound2BindingImpl implements
test.wsdl.interop3.compound2.SoapInteropCompound2Binding {
+public class SoapInteropCompound2BindingImpl implements
test.wsdl.interop3.compound2.SoapInteropCompound2PortType {
public test.wsdl.interop3.compound2.xsd.Employee
echoEmployee(test.wsdl.interop3.compound2.xsd.Employee xEmployee) throws
java.rmi.RemoteException {
return xEmployee;
}
1.10 +3 -3 xml-axis/java/test/wsdl/interop3/compound2/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/compound2/build.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- build.xml 11 Mar 2002 05:06:04 -0000 1.9
+++ build.xml 23 May 2002 11:24:22 -0000 1.10
@@ -2,7 +2,7 @@
<property name="root.dir" value="../../../.."/>
<path id="test-classpath">
- <pathelement location="${root.dir}/${build.dest}" />
+ <pathelement location="${build.dest}" />
<pathelement path="${java.class.path}" />
<pathelement location="${java.home}/../lib/tools.jar"/>
<fileset dir="${root.dir}/lib">
@@ -29,8 +29,8 @@
todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
<!-- compile the skeletons -->
- <javac srcdir="${root.dir}/${build.dir}/work"
- destdir="${root.dir}/${build.dest}" debug="on">
+ <javac srcdir="${build.dir}/work"
+ destdir="${build.dest}" debug="on">
<classpath refid="test-classpath" />
<include name="test/wsdl/interop3/${testname}/*.java" />
</javac>
1.2 +1 -1 xml-axis/java/test/wsdl/interop3/docLit/DocLitTestCase.java
Index: DocLitTestCase.java
===================================================================
RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/docLit/DocLitTestCase.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- DocLitTestCase.java 5 Mar 2002 01:04:53 -0000 1.1
+++ DocLitTestCase.java 23 May 2002 11:24:22 -0000 1.2
@@ -37,7 +37,7 @@
}
public void testStep3() throws Exception {
- WSDLInteropTestDocLitPortBinding binding;
+ WSDLInteropTestDocLitPortType binding;
try {
if (url != null) {
binding = new
WSDLInteropTestDocLitServiceLocator().getWSDLInteropTestDocLitPort(url);
1.3 +1 -1
xml-axis/java/test/wsdl/interop3/docLit/WSDLInteropTestDocLitPortBindingImpl.java
Index: WSDLInteropTestDocLitPortBindingImpl.java
===================================================================
RCS file:
/home/cvs/xml-axis/java/test/wsdl/interop3/docLit/WSDLInteropTestDocLitPortBindingImpl.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- WSDLInteropTestDocLitPortBindingImpl.java 5 Mar 2002 01:05:24 -0000 1.2
+++ WSDLInteropTestDocLitPortBindingImpl.java 23 May 2002 11:24:22 -0000 1.3
@@ -7,7 +7,7 @@
package test.wsdl.interop3.docLit;
-public class WSDLInteropTestDocLitPortBindingImpl implements
test.wsdl.interop3.docLit.WSDLInteropTestDocLitPortBinding {
+public class WSDLInteropTestDocLitPortBindingImpl implements
test.wsdl.interop3.docLit.WSDLInteropTestDocLitPortType {
public java.lang.String echoString(java.lang.String echoStringParam) throws
java.rmi.RemoteException {
return echoStringParam;
}
1.11 +4 -4 xml-axis/java/test/wsdl/interop3/docLit/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/docLit/build.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- build.xml 11 Mar 2002 14:02:39 -0000 1.10
+++ build.xml 23 May 2002 11:24:22 -0000 1.11
@@ -2,7 +2,7 @@
<property name="root.dir" value="../../../.."/>
<path id="test-classpath">
- <pathelement location="${root.dir}/${build.dest}" />
+ <pathelement location="${build.dest}" />
<pathelement path="${java.class.path}" />
<pathelement location="${java.home}/../lib/tools.jar"/>
<fileset dir="${root.dir}/lib">
@@ -22,7 +22,7 @@
output="${root.dir}/build/work" skeletonDeploy="yes"
serverSide="yes"/>
- <mkdir dir="${root.dir}/${build.dest}"/>
+ <mkdir dir="${build.dest}"/>
<copy file="WSDLInteropTestDocLitPortBindingImpl.java" overwrite="true"
todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
@@ -31,8 +31,8 @@
todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
<!-- compile the skeletons -->
- <javac srcdir="${root.dir}/${build.dir}/work"
- destdir="${root.dir}/${build.dest}" debug="on">
+ <javac srcdir="${build.dir}/work"
+ destdir="${build.dest}" debug="on">
<classpath refid="test-classpath" />
<include name="test/wsdl/interop3/${testname}/*.java" />
</javac>
1.9 +4 -4 xml-axis/java/test/wsdl/interop3/docLitParam/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/docLitParam/build.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- build.xml 11 Mar 2002 05:06:04 -0000 1.8
+++ build.xml 23 May 2002 11:24:22 -0000 1.9
@@ -2,7 +2,7 @@
<property name="root.dir" value="../../../.."/>
<path id="test-classpath">
- <pathelement location="${root.dir}/${build.dest}" />
+ <pathelement location="${build.dest}" />
<pathelement path="${java.class.path}" />
<pathelement location="${java.home}/../lib/tools.jar"/>
<fileset dir="${root.dir}/lib">
@@ -22,14 +22,14 @@
output="${root.dir}/build/work" skeletonDeploy="yes"
serverSide="yes"/>
- <mkdir dir="${root.dir}/${build.dest}"/>
+ <mkdir dir="${build.dest}"/>
<copy file="WSDLInteropTestDocLitPortBindingImpl.java" overwrite="true"
todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
<!-- compile the skeletons -->
- <javac srcdir="${root.dir}/${build.dir}/work"
- destdir="${root.dir}/${build.dest}" debug="on">
+ <javac srcdir="${build.dir}/work"
+ destdir="${build.dest}" debug="on">
<classpath refid="test-classpath" />
<include name="test/wsdl/interop3/${testname}/*.java" />
</javac>
1.9 +4 -4 xml-axis/java/test/wsdl/interop3/import1/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/import1/build.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- build.xml 11 Mar 2002 05:06:04 -0000 1.8
+++ build.xml 23 May 2002 11:24:22 -0000 1.9
@@ -2,7 +2,7 @@
<property name="root.dir" value="../../../.."/>
<path id="test-classpath">
- <pathelement location="${root.dir}/${build.dest}" />
+ <pathelement location="${build.dest}" />
<pathelement path="${java.class.path}" />
<pathelement location="${java.home}/../lib/tools.jar"/>
<fileset dir="${root.dir}/lib">
@@ -22,7 +22,7 @@
output="${root.dir}/build/work" skeletonDeploy="yes"
serverSide="yes"/>
- <mkdir dir="${root.dir}/${build.dest}"/>
+ <mkdir dir="${build.dest}"/>
<copy file="SoapInteropImport1BindingImpl.java" overwrite="true"
todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
@@ -31,8 +31,8 @@
todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
<!-- compile the skeletons -->
- <javac srcdir="${root.dir}/${build.dir}/work"
- destdir="${root.dir}/${build.dest}" debug="on">
+ <javac srcdir="${build.dir}/work"
+ destdir="${build.dest}" debug="on">
<classpath refid="test-classpath" />
<include name="test/wsdl/interop3/${testname}/*.java" />
</javac>
1.9 +4 -4 xml-axis/java/test/wsdl/interop3/import2/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/import2/build.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- build.xml 11 Mar 2002 05:06:04 -0000 1.8
+++ build.xml 23 May 2002 11:24:22 -0000 1.9
@@ -2,7 +2,7 @@
<property name="root.dir" value="../../../.."/>
<path id="test-classpath">
- <pathelement location="${root.dir}/${build.dest}" />
+ <pathelement location="${build.dest}" />
<pathelement path="${java.class.path}" />
<pathelement location="${java.home}/../lib/tools.jar"/>
<fileset dir="${root.dir}/lib">
@@ -22,7 +22,7 @@
output="${root.dir}/build/work" skeletonDeploy="yes"
serverSide="yes"/>
- <mkdir dir="${root.dir}/${build.dest}"/>
+ <mkdir dir="${build.dest}"/>
<copy file="SoapInteropImport2BindingImpl.java" overwrite="true"
todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
@@ -31,8 +31,8 @@
todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
<!-- compile the skeletons -->
- <javac srcdir="${root.dir}/${build.dir}/work"
- destdir="${root.dir}/${build.dest}" debug="on">
+ <javac srcdir="${build.dir}/work"
+ destdir="${build.dest}" debug="on">
<classpath refid="test-classpath" />
<include name="test/wsdl/interop3/${testname}/*.java" />
</javac>
1.9 +4 -4 xml-axis/java/test/wsdl/interop3/import3/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/import3/build.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- build.xml 11 Mar 2002 05:06:05 -0000 1.8
+++ build.xml 23 May 2002 11:24:22 -0000 1.9
@@ -2,7 +2,7 @@
<property name="root.dir" value="../../../.."/>
<path id="test-classpath">
- <pathelement location="${root.dir}/${build.dest}" />
+ <pathelement location="${build.dest}" />
<pathelement path="${java.class.path}" />
<pathelement location="${java.home}/../lib/tools.jar"/>
<fileset dir="${root.dir}/lib">
@@ -22,7 +22,7 @@
output="${root.dir}/build/work" skeletonDeploy="yes"
serverSide="yes"/>
- <mkdir dir="${root.dir}/${build.dest}"/>
+ <mkdir dir="${build.dest}"/>
<copy file="SoapInteropImport3BindingImpl.java" overwrite="true"
todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
@@ -31,8 +31,8 @@
todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
<!-- compile the skeletons -->
- <javac srcdir="${root.dir}/${build.dir}/work"
- destdir="${root.dir}/${build.dest}" debug="on">
+ <javac srcdir="${build.dir}/work"
+ destdir="${build.dest}" debug="on">
<classpath refid="test-classpath" />
<include name="test/wsdl/interop3/${testname}/*.java" />
</javac>
1.9 +4 -4 xml-axis/java/test/wsdl/interop3/rpcEnc/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/rpcEnc/build.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- build.xml 11 Mar 2002 05:06:05 -0000 1.8
+++ build.xml 23 May 2002 11:24:22 -0000 1.9
@@ -2,7 +2,7 @@
<property name="root.dir" value="../../../.."/>
<path id="test-classpath">
- <pathelement location="${root.dir}/${build.dest}" />
+ <pathelement location="${build.dest}" />
<pathelement path="${java.class.path}" />
<pathelement location="${java.home}/../lib/tools.jar"/>
<fileset dir="${root.dir}/lib">
@@ -22,14 +22,14 @@
output="${root.dir}/build/work" skeletonDeploy="yes"
serverSide="yes"/>
- <mkdir dir="${root.dir}/${build.dest}"/>
+ <mkdir dir="${build.dest}"/>
<copy file="WSDLInteropTestRpcEncPortBindingImpl.java" overwrite="true"
todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
<!-- compile the skeletons -->
- <javac srcdir="${root.dir}/${build.dir}/work"
- destdir="${root.dir}/${build.dest}" debug="on">
+ <javac srcdir="${build.dir}/work"
+ destdir="${build.dest}" debug="on">
<classpath refid="test-classpath" />
<include name="test/wsdl/interop3/${testname}/*.java" />
</javac>