1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
<?xml version="1.0" ?>
<!DOCTYPE project [
<!ENTITY properties SYSTEM "file:../../../xmls/properties.xml">
<!ENTITY paths SYSTEM "file:../../../xmls/path_refs.xml">
<!ENTITY taskdefs SYSTEM "file:../../../xmls/taskdefs.xml">
<!ENTITY taskdefs_post_compile SYSTEM "file:../../../xmls/taskdefs_post_compile.xml">
<!ENTITY targets SYSTEM "file:../../../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/extra" />
&properties;
&paths;
&taskdefs;
&taskdefs_post_compile;
&targets;
<target name="clean">
<echo message="componentName is ${componentName}"/>
<echo message="Removing ${build.dir}/**/test/wsdl/extra" />
<delete dir="${build.dir}/classes/test/wsdl/extra"/>
<delete dir="${build.dir}/work/test/wsdl/extra"/>
</target>
<!-- main target, always start from scratch -->
<target name="compile" depends="setenv, clean">
<echo message="Compiling test.wsdl.extra"/>
<!-- Compile the test classes for Java2WSDL -->
<javac srcdir="${axis.home}/test/wsdl/extra"
destdir="${build.dest}"
fork="${javac.fork}"
nowarn="${nowarn}"
source="${source}"
debug="${debug}">
<classpath refid="classpath" />
<include name="MyService.java" />
<include name="Extra.java" />
</javac>
<mkdir dir="${build.dir}/work/test/wsdl/extra"/>
<!-- Generate WSDL from java -->
<java2wsdl output="${build.dir}/work/test/wsdl/extra/MyService.wsdl"
className= "test.wsdl.extra.MyService"
extraClasses="test.wsdl.extra.Extra"
namespace="http://test.com/extraClasses"
location="http://localhost:8080/axis/services/MyService">
<mapping package="test.wsdl.extra" namespace="http://test.com/extraClasses" />
</java2wsdl>
<!-- Verify files generated based on everything in WSDL -->
<wsdl2java url="${build.dir}/work/test/wsdl/extra/MyService.wsdl"
output="${axis.home}/build/work"
all="yes"
verbose="no"
testcase="no">
<mapping namespace="http://test.com/extraClasses" package="test.wsdl.extra"/>
</wsdl2java>
<!-- Copy the test case -->
<copy file="ExtraClassesTestCase.java" overwrite="true"
todir="${build.dir}/work/test/wsdl/extra"/>
<!-- Clean up old classes -->
<delete dir="${build.dir}/classes/test/wsdl/extra" />
<!-- Compile the test case -->
<javac srcdir="${build.dir}/work" destdir="${build.dest}" nowarn="${nowarn}" source="${source}" fork="${javac.fork}"
debug="${debug}">
<classpath refid="classpath" />
<include name="test/wsdl/extra/*.java" />
</javac>
</target>
<target name="run" >
<antcall target="execute-Component-noServer" />
</target>
</project>
|