Re: how to create a war file manually

2001-05-18 Thread anil
You have your directories META-INF WEB-INF jsp html then: jar -cvf my.war META-INF WEB-INF jsp html anil Jianlin Chang wrote: > How can I create a war file manually? I know I can follow > "Developing Applications With Tomcat" and use build.xml, but that > seems more complicated, is there a

Re: how to create a war file manually

2001-05-18 Thread Anne Dirkse
Use jar. Assuming that you have your dir structure set up correctly, all you have to do is jar them up, specify whatever.war as the file name, and there you have it. Anne > Jianlin Chang wrote: > > How can I create a war file manually? I know I can follow "Developing > Applications With Tomcat"

how to create a war file manually

2001-05-18 Thread Jianlin Chang
How can I create a war file manually?  I know I can follow "Developing Applications With Tomcat" and use build.xml, but that seems more complicated, is there a simple way where I can just pack everything needed (jsp, html, classed) into a war file using a single command?  Thanks.