thanks to Prashanth,
Here is ant build on a war file. I can't build manually, but I did it with
Ant.
<target name="war">
<war warfile="../weblogic/war/dgonline.war"
webxml="${webapps.dir}/WEB-INF/web.xml">
<fileset dir="${webapps.dir}" includes="**/*.jsp"/>
<fileset dir="${webapps.dir}" includes="**/*.htm"/>
<fileset dir="${webapps.dir}"
includes="images/**/*"/>
<webinf dir="${webapps.dir}/WEB-INF">
<include name="*.tld"/>
<include name="*.xml"/>
<include name="*.dtd"/>
<exclude name="web.xml"/>
</webinf>
<lib dir="${webapps.dir}/WEB-INF/lib"/>
<classes dir="${webapps.dir}/WEB-INF/classes"/>
</war>
</target>
-----Original Message-----
From: Prashanth_Thm [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 19, 2001 9:41 AM
To: [EMAIL PROTECTED]
Subject: RE: deploying app
Hi Kiet,
I am using Ant build tool.
It takes XML file as input.
It creates a war file containing the jar files (struts.jar ,
xerces.jar , application.jar ..etc..)
and copies into deploy directory of weblogic6.0
Lot of other utilities are available using the XML tags.
The Ant tool is freely downloadable at jakarta.apache.org
Prashanth.
> -----Original Message-----
> From: Kiet Nguyen [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, July 19, 2001 8:35 AM
> To: Struts-User (E-mail)
> Subject: deploying app
>
> How are everyone deploying their web application? A logical is to build a
> war file containing jsp/classes/ and struts.jar and xerces.jar ........
> Has
> anyone got this to work with weblogic 51.
>
> thanks