blob: 48dec27cf9f57a2bff7525459f01260b75688884 [file] [log] [blame]
<?xml version="1.0" ?>
<!DOCTYPE project [
<!ENTITY properties SYSTEM "../../../xmls/properties.xml">
<!ENTITY paths SYSTEM "../../../xmls/path_refs.xml">
<!ENTITY taskdefs SYSTEM "../../../xmls/taskdefs.xml">
<!ENTITY taskdefs_post_compile SYSTEM "../../../xmls/taskdefs_post_compile.xml">
<!ENTITY targets SYSTEM "../../../xmls/targets.xml">
]>
<!-- ===================================================================
<description>
Test/Sample Component file for Axis
Notes:
This is a build file for use with the Jakarta Ant build tool.
Prerequisites:
jakarta-ant from http://jakarta.apache.org
Build Instructions:
To compile
ant compile
To execute
ant run
Author:
Matt Seibert mseibert@us.ibm.com
Copyright:
Copyright (c) 2002-2003 Apache Software Foundation.
</description>
==================================================================== -->
<project default="compile">
<property name="axis.home" location="../../.." />
<property name="componentName" value="test/wsdl/addrNoImplSEI" />
&properties;
&paths;
&taskdefs;
&taskdefs_post_compile;
&targets;
<target name="clean">
<echo message="Removing ${build.dir}/classes/${componentName} and ${build.dir}/work/${componentName}" />
<delete dir="${build.dir}/classes/${componentName}"/>
<delete dir="${build.dir}/work/${componentName}"/>
</target>
<target name="copy" depends="setenv"/>
<target name="compile" depends="copy">
<echo message="Compiling test.wsdl.addrNoImplSEI"/>
<!-- AddressBook roundtrip example that does not implement SEI -->
<!-- Summary -->
<!-- Bootstrap the process by creating java classes from the original wsdl -->
<!-- Compile the classes plus the provided Impl class -->
<!-- The Impl class is supposed to simulate a server-side EJB -->
<!-- It does not implement the SEI and it contains some additional throw clauses -->
<!-- Run Java2WSDL on the Impl class to ensure a valid wsdl is generated -->
<!-- Run WSDL2Java on the new wsdl to generate client side and other artifacts -->
<!-- Replace the generated Impl with the original Impl that does not implement the SEI -->
<!-- Compile and run test. -->
<wsdl2java url="${axis.home}/test/wsdl/addrNoImplSEI/AddressBook.wsdl"
output="${axis.home}/build/work"
deployscope="session"
serverSide="yes"
skeletonDeploy="no"
noimports="no"
verbose="no"
typeMappingVersion="1.1"
testcase="no">
<mapping namespace="urn:AddrNoImplSEI" package="test.wsdl.addrNoImplSEI"/>
</wsdl2java>
<!-- Copy over original classes -->
<copy todir="${build.dir}/work/test/wsdl/addrNoImplSEI" overwrite="yes">
<fileset dir="${test.dir}/wsdl/addrNoImplSEI">
<include name="*.java"/>
</fileset>
</copy>
<!-- Compile the Web Service -->
<javac srcdir="${build.dir}/work" destdir="${build.dest}" debug="${debug}" nowarn="${nowarn}" source="${source}" fork="${javac.fork}">
<classpath refid="classpath" />
<include name="test/wsdl/addrNoImplSEI/**.java" />
<exclude name="test/wsdl/addrNoImplSEI/*TestCase.java" />
<exclude name="test/wsdl/addrNoImplSEI/Main.java" />
</javac>
<!-- Now run java to wsdl to make sure we don't have any strange artifacts -->
<java2wsdl output="${axis.home}/build/work/test/wsdl/addrNoImplSEI/AddressBook.wsdl"
className= "test.wsdl.addrNoImplSEI.AddressBookNoImplSEISoapBindingImpl"
useInheritedMethods="false"
portTypeName="AddressBookNoImplSEI"
namespace="http://addrNoImplSEI.wsdl.test"
typeMappingVersion="1.1"
location="http://localhost:8080/axis/services/AddressBookNoImplSEI">
<mapping namespace="urn:AddrNoImplSEI" package="test.wsdl.addrNoImplSEI"/>
</java2wsdl>
<!-- Now run wsdl to java to make sure we don't have any strange artifacts -->
<delete dir="${build.dir}/classes/test/wsdl/addrNoImplSEI"/>
<delete>
<fileset dir="${build.dir}/work/test/wsdl/addrNoImplSEI" includes="**/*.java"/>
</delete>
<wsdl2java url="${axis.home}/build/work/test/wsdl/addrNoImplSEI/AddressBook.wsdl"
output="${axis.home}/build/work"
deployscope="session"
serverSide="yes"
skeletonDeploy="no"
noimports="no"
verbose="no"
typeMappingVersion="1.1"
testcase="no">
<mapping namespace="urn:AddrNoImplSEI" package="test.wsdl.addrNoImplSEI"/>
</wsdl2java>
<!-- Copy over original classes -->
<copy todir="${build.dir}/work/test/wsdl/addrNoImplSEI" overwrite="yes">
<fileset dir="${axis.home}/test/wsdl/addrNoImplSEI">
<include name="*TestCase.java"/>
<include name="*Impl.java"/>
<include name="Main.java"/>
</fileset>
</copy>
<javac srcdir="${build.dir}/work" destdir="${build.dest}" debug="${debug}" nowarn="${nowarn}" source="${source}" fork="${javac.fork}">
<classpath refid="classpath" />
<include name="test/wsdl/addrNoImplSEI/**.java" />
</javac>
</target>
<target name="run" >
<antcall target="execute-Component" />
</target>
</project>