blob: b62313f4c7a0c1f7569c71929ca712955d31e6ff [file] [log] [blame]
<?xml version="1.0"?>
<!--
Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->
<!DOCTYPE project [
<!ENTITY commonSetup SYSTEM "file:./../../../../../config/properties.xml">
<!ENTITY commonBuild SYSTEM "file:./../../../../../config/common.xml">
<!ENTITY jaxwsTools SYSTEM "file:./../../../annotations/jaxwstools.xml">
<!ENTITY jbicommon SYSTEM "file:./../../jbi_commons.xml">
<!ENTITY jbiproperties SYSTEM "file:./../../jbi_commons.properties">
<!ENTITY testproperties SYSTEM "file:./build.properties">
]>
<project name="web-client" default="all" basedir=".">
&commonSetup;
&commonBuild;
&testproperties;
&jaxwsTools;
&jbicommon;
&jbiproperties;
<target name="all" depends="clean, setup, runtest, undeploy"/>
<target name="clean" depends="init-common">
<antcall target="clean-common"/>
</target>
<target name="setup" depends="assemble-ejb, deploy-app, assemble-client, deploy-client"/>
<target name="compile" depends="init-common">
<antcall target="compile-common">
<param name="src" value="endpoint"/>
</antcall>
</target>
<target name="create-user" depends="init-common">
<antcall target="create-user-common">
<param name="user" value="${fileUser}"/>
<param name="password" value="${fileUserPassword}"/>
<param name="groups" value="${fileUserGroups}"/>
</antcall>
</target>
<target name="delete-user" depends="init-common">
<antcall target="delete-user-common">
<param name="user" value="${fileUser}"/>
</antcall>
</target>
<target name="assemble-ejb" depends="init-common, compile">
<echo message="Assembling web service module"/>
<mkdir dir="${assemble.dir}"/>
<jar destfile="${assemble.dir}/${appname}-ejb.jar"
basedir="${build.classes.dir}"
includes="endpoint/**">
</jar>
</target>
<target name="assemble-client" depends="init-common">
<echo message="Assembling web client"/>
<mkdir dir="${build.classes.dir}/webclient/WEB-INF/classes"/>
<mkdir dir="${assemble.dir}"/>
<echo message="wsimport -keep -d ${build.classes.dir}/webclient/WEB-INF/classes http://localhost:8080/HelloEJBService/HelloEJB?WSDL"/>
<antcall target="wsimport">
<param name="wsimport.args"
value="-keep -d ${build.classes.dir}/webclient/WEB-INF/classes http://localhost:8080/HelloEJBService/HelloEJB?WSDL"/>
</antcall>
<javac srcdir="." destdir="${build.classes.dir}/webclient/WEB-INF/classes"
classpath="${env.APS_HOME}/lib/reporter.jar:${env.S1AS_HOME}/lib/j2ee.jar:${env.S1AS_HOME}/lib/webservices-rt.jar:${env.S1AS_HOME}/lib/webservices-tools.jar"
debug="on"
includes="webclient/**"/>
<copy file="./client-web.xml" tofile="${build.classes.dir}/webclient/WEB-INF/web.xml"/>
<copy file="./client-sun-web.xml" tofile="${build.classes.dir}/webclient/WEB-INF/sun-web.xml"/>
<jar destfile="${assemble.dir}/wsclient.war" basedir="${build.classes.dir}/webclient" includes="**"/>
</target>
<target name="deploy-client" depends="assemble-client, create-user">
<property name="client.war" value="${assemble.dir}/wsclient.war"/>
<echo message="Deploying ${wsdl.war} from ${basedir}." level="verbose"/>
<exec executable="${ASADMIN}">
<arg line="deploy"/>
<arg line="--user ${admin.user}"/>
<arg line="--host ${admin.host}"/>
<arg line="--port ${admin.port}"/>
<arg line="${client.war}"/>
</exec>
</target>
<target name="deploy-app">
<echo message="Deploying the web service"/>
<antcall target="deploy-jar-common">
<param name="contextroot" value="${appname}"/>
</antcall>
<antcall target="set-jbi-enabled">
<param name="appName" value="${appname}-ejb"/>
<param name="wsName" value="HelloEJB"/>
<param name="module" value="ejb-module"/>
<param name="flag" value="true"/>
</antcall>
</target>
<target name="undeploy" depends="init-common, delete-user">
<antcall target="undeploy-app"/>
<antcall target="undeploy-client"/>
</target>
<target name="undeploy-client" depends="init-common">
<echo message="Undeploying client application"/>
<exec executable="${ASADMIN}">
<arg line="undeploy"/>
<arg line="--user ${admin.user}"/>
<arg line="--passwordfile ${admin.password.file}"/>
<arg line="--host ${admin.host}"/>
<arg line="--port ${admin.port}"/>
<arg line="wsclient"/>
</exec>
</target>
<target name="undeploy-app" depends="init-common">
<echo message="Undeploying web service"/>
<exec executable="${ASADMIN}">
<arg line="undeploy"/>
<arg line="--user ${admin.user}"/>
<arg line="--passwordfile ${admin.password.file}"/>
<arg line="--host ${admin.host}"/>
<arg line="--port ${admin.port}"/>
<arg line="${appname}-ejb"/>
</exec>
</target>
<target name="runtest" depends="init-common">
<mkdir dir="${build.classes.dir}/client"/>
<javac srcdir="." destdir="${build.classes.dir}/client"
classpath="${env.APS_HOME}/lib/reporter.jar"
includes="client/**"/>
<unjar src="${env.APS_HOME}/lib/reporter.jar" dest="${build.classes.dir}/client"/>
<java classname="client.TestClient">
<classpath>
<pathelement path="${build.classes.dir}/client"/>
</classpath>
<arg value="http://${http.host}:${http.port}/wsclient/webclient/RequestProcessor"/>
<arg value="${fileUser}:${fileUserPassword}"/>
</java>
</target>
</project>