I Write a JSP Project With jBuilder 2006,And Now i Want to Upload itTo a JspHost..it seems That i have To Convert My project In to a Warfile....how can I create .war file?
There are many ways to create a web app package. You can use Ant or Maven. I am sure your JBuilder also have tools to export packages as .war. I believe that most of the IDE tools are able to create .jar and/or .war files.
Ant script is the best, that’s what I use for all of my packaging needs: .war, .jar, .ear, etc…If you can write a .cmd file to make a .jar, just name your destination file as .war.
ZIP it (using zip utilities like WinZip) and change it's extension to .war and then deploy it.
When you create a WebModule in JBuilder there is a check box there, when you check it, its automatically create WAR file every time you build your project.