| Author |
WEB-INF
|
Muhammad Uzair Baig
Greenhorn
Joined: Mar 02, 2004
Posts: 12
|
|
hello How can i create my own WEB-INF and register it with tomcat. Thank you Best Regards
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12271
|
|
Tomcat, when starting up, will recognize any directory under webapps as a web application if: 1. There is a WEB-INF subdirectory (must be upper case) 2. The WEB-INF directory has a web.xml file in the right format (which can be minimal but must be there) See the web.xml file under webapps/examples for inspiration. You can get the definitive information on web.xml from this Sun site - be sure you get the API version that matches the Tomcat you are using. Bill
|
Java Resources at www.wbrogden.com
|
 |
 |
|
|
subject: WEB-INF
|
|
|