Hi All... I am using
Tomcat 5 on windows2000 server. I have added following line in the "server.xml" file of Tomcat to create my own context for
servlets and
JSP.
<Context path="/test" docBase="C:\test" debug="0" />
My C:\test has following directory structure. "C:\test\WEB-INF\classes". Inside the classes folder I am putting my servlet class files. I have "web.xml" file within WEB-INF folder in which I am adding <servlet> and <servlet-mapping> tags for each Servlet class file. However each time I am adding a new entry in web.xml file, I have to restart the Tomcat to run that servlet. It's making my development process hectic. Can anybody help me to solve this problem ?? Thanx in advance.
Niranjan Nanda