blob: 08fcf10dbf210d1b7f716331d603f3994556617d [file] [log] [blame]
<project name="samples" default="alltests">
<path id="axis.classpath">
<fileset dir="../lib">
<include name="*.jar"/>
</fileset>
<pathelement location="userguide/sample.jar"/>
</path>
<path id="mtom.classpath">
<pathelement location="mtom/mtomClient.jar"/>
</path>
<path id="security.classpath">
<pathelement location="security/secUtil.jar"/>
</path>
<path id="sample.classpath">
<path refid="axis.classpath"/>
<path refid="mtom.classpath"/>
<path refid="security.classpath"/>
</path>
<target name="alltests" depends="testEchoBlockingClient,testEchoBlockingDualClient,testEchoNonBlockingDualClient,testPingClient,testWebServiceWithModuleClient">
</target>
<target name="testEchoBlockingClient">
<java classname="userguide.clients.EchoBlockingClient" classpathref="axis.classpath"/>
</target>
<target name="testEchoBlockingDualClient">
<java classname="userguide.clients.EchoBlockingDualClient" classpathref="axis.classpath"/>
</target>
<target name="testEchoNonBlockingDualClient">
<java classname="userguide.clients.EchoNonBlockingDualClient" classpathref="axis.classpath"/>
</target>
<target name="testPingClient">
<java classname="userguide.clients.PingClient" classpathref="axis.classpath"/>
</target>
<target name="testWebServiceWithModuleClient">
<java classname="userguide.clients.ClientForWebServiceWithModule" classpathref="axis.classpath"/>
</target>
<target name="testEchoNonBlockingClient">
<java classname="userguide.clients.EchoNonBlockingClient" classpathref="axis.classpath"/>
</target>
<target name="mtomSample">
<java classname="sample.mtom.imagetransfer.client.MTOMClient" classpathref="sample.classpath" fork="true"/>
</target>
<target name="securitySample">
<java classname="sample.security.Client" classpathref="sample.classpath" fork="true">
<arg value="security/client_repo"/>
<arg value="8080"/>
</java>
</target>
</project>