rubys 02/02/28 07:26:27
Modified: java/test/wsdl/interop3/compound2 build.xml
java/test/wsdl/interop3/docLit build.xml
Added: java/test/wsdl/interop3/compound2
SoapInteropCompound2BindingImpl.java
java/test/wsdl/interop3/docLit
WSDLInteropTestDocLitPortBindingImpl.java
Log:
Add compound2 and docLit impls
Revision Changes Path
1.4 +3 -0 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.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- build.xml 28 Feb 2002 14:17:41 -0000 1.3
+++ build.xml 28 Feb 2002 15:26:27 -0000 1.4
@@ -20,6 +20,9 @@
<wsdl2java url="http://www.whitemesa.net/wsdl/r3/compound2.wsdl"
output="${root.dir}/build/work" skeleton="yes"/>
+ <copy file="SoapInteropCompound2BindingImpl.java"
+ todir="${root.dir}/build/work/test/wsdl/interop3/compound2"/>
+
<!-- compile the skeletons -->
<javac srcdir="${root.dir}/${build.dir}/work"
destdir="${root.dir}/${build.dest}" debug="on">
1.1
xml-axis/java/test/wsdl/interop3/compound2/SoapInteropCompound2BindingImpl.java
Index: SoapInteropCompound2BindingImpl.java
===================================================================
/**
* SoapInteropCompound2BindingImpl.java
*
* This file was auto-generated from WSDL
* by the Apache Axis Wsdl2java emitter.
*/
package test.wsdl.interop3.compound2;
public class SoapInteropCompound2BindingImpl implements
test.wsdl.interop3.compound2.SoapInteropCompound2Binding {
public org.soapinterop.Employee echoEmployee(org.soapinterop.Employee xEmployee)
throws java.rmi.RemoteException {
return xEmployee;
}
}
1.4 +3 -0 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.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- build.xml 28 Feb 2002 14:17:41 -0000 1.3
+++ build.xml 28 Feb 2002 15:26:27 -0000 1.4
@@ -22,6 +22,9 @@
<mkdir dir="${root.dir}/${build.dest}"/>
+ <copy file="WSDLInteropTestDocLitPortBindingImpl.java"
+ todir="${root.dir}/build/work/test/wsdl/interop3/docLit"/>
+
<!-- compile the skeletons -->
<javac srcdir="${root.dir}/${build.dir}/work"
destdir="${root.dir}/${build.dest}" debug="on">
1.1
xml-axis/java/test/wsdl/interop3/docLit/WSDLInteropTestDocLitPortBindingImpl.java
Index: WSDLInteropTestDocLitPortBindingImpl.java
===================================================================
/**
* WSDLInteropTestDocLitPortBindingImpl.java
*
* This file was auto-generated from WSDL
* by the Apache Axis Wsdl2java emitter.
*/
package test.wsdl.interop3.docLit;
public class WSDLInteropTestDocLitPortBindingImpl implements
test.wsdl.interop3.docLit.WSDLInteropTestDocLitPortBinding {
public java.lang.String echoString(java.lang.String echoStringParam) throws
java.rmi.RemoteException {
return echoStringParam;
}
public org.soapinterop.ArrayOfstringLiteral
echoStringArray(org.soapinterop.ArrayOfstringLiteral echoStringArrayParam) throws
java.rmi.RemoteException {
return echoStringArrayParam;
}
public org.soapinterop.SOAPStruct echoStruct(org.soapinterop.SOAPStruct
echoStructParam) throws java.rmi.RemoteException {
return echoStructParam;
}
public void echoVoid() throws java.rmi.RemoteException {
}
}