have my own directory as "sampleapp" which has the necessary structure and the .class file is put into the following directory structure. classes/package1/structure/HelloServlet.class.
My question is in %TOMCAT%/conf/server.xml file how is the <Context> </Context> tag written. I have written it like this........ <Context path="/sampleapp" docBase="sampleapp" debug="0" reloadable="true"> </Context> The directory structure of sampleapp is as follows...... %TOMCAT%/webapps/sampleapp/WEB-INF/classes /lib /sourcefiles /web.xml. The classes directory has the structure like this.. classes/package1/structure/HelloServlet class file. My Web.xml file looks like this /************************ web.xml ************************************/ <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <display-name>Servlet 2.4 Examples</display-name> <description> Servlet 2.4 Examples </description> <!-- Servlet mapping start --> <!-- Define servlets. i.e. bind a servlet name to a class --> <servlet> <servlet-name>HelloServlet</servlet-name> <servlet-class>package1.structure.HelloServlet</servlet-class> </servlet> <!-- bind a servlet name to a URL (pattern) --> <servlet-mapping> <servlet-name>HelloServlet</servlet-name> <url-pattern>/sampleapp</url-pattern> </servlet-mapping> <!-- Servlet mapping end --> </web-app> /************************* web.xml ******************************/ /******************* Console error *********************/ Feb 2, 2004 8:33:19 AM org.apache.commons.digester.Digester fatalError SEVERE: Parse Fatal Error at line 3 column 6: The processing instruction target matching "[xX][mM][lL]" is not allowed. /******************* Console error *********************/ Let me know if any changes are to be made. Help greatly apreciated. Thanks AS