well yes the pages are in the application folder. I made some changes
in the configuration and now i am able to open the manager but not my
application its displaying following error "The requested resource (/
KKS/) is not available" KKS is my application folder.
I even made some changes with the web.xml file. but my this
application is working perfectly on tomcat on Windows XP, but its
giving this problem in ubuntu. i am pasting here the contents of my
web.xml file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web
Application 2.3//EN" "
http://java.sun.com/j2ee/dtds/web-app_2_3.dtd">
<web-app>
<display-name>KKS</display-name>
<description>KKS</description>
<servlet>
<servlet-name>TextName</servlet-name>
<display-name>TextName</display-name>
<description>Text Name Servlet</description>
<servlet-class>TestServlet</servlet-class>
<init-param>
<param-name>configfile</param-name>
<param-value>/kse.xml</param-value>
</init-param>
<init-param>
<param-name>template</param-name>
<param-value>/jsp/taglibs.jsp</param-value>
</init-param>
<load-on-startup>5</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>TextName</servlet-name>
<url-pattern>/TextName</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>60</session-timeout>
</session-config>
<security-constraint>
<web-resource-collection>
<web-resource-name>Text Name</web-resource-name>
<url-pattern>/jsp/admin/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>admin</role-name>
</auth-constraint>
</security-constraint>
<security-constraint>
<web-resource-collection>
<web-resource-name>Text Name config</web-resource-name>
<url-pattern>/kse.xml</url-pattern>
</web-resource-collection>
<auth-constraint>
</auth-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>Text Name</realm-name>
</login-config>
</web-app>
this was the xml content, kindly tell me where i am wrong or whats
restricting the application from running...