run ANT task in xp local machine & deploy to remote websphere on unix
Hi,
I need to write ANT script for deploying to remote websphere server which is running on unix. Local machine is xp here i need to run ant script
I written sample code but i am not sure about this
<project name="InstallApp" default="installapp" basedir=".">
<taskdef name="wsInstallApp" classname="com.ibm.websphere.ant.tasks.InstallApplication"
><target name="installapp">
<!-- Install an Enterprise Application under the profile specified. -->
<wsInstallApp
wasHome="${wasHome.dir}"
ear="Z:/Public/EAR/AuditBrowser.ear"
conntype="SOAP"
host="10.**.**.**"
port="16258"
user="*********usr
password="*******pwd"
failonerror="true">
</wsInstallApp>
</target>
Please give me the steps and how to invoke and deploy the files and sample code and what should be wasHome
Please annybody help me
</project>

