| Author |
server side processing error
|
rodgers tang
Greenhorn
Joined: Mar 11, 2005
Posts: 7
|
|
When I start tomcat server and run sample code. I find error: The requested resource (/servlet/donow.RecordingServlet) is not available. web.xml: <?xml version="1.0" encoding="ISO-8859-1"?> <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4"> <display-name> RainForest App</display-name> <description>Basic web application </description> <!-- STRUTS SUPPORT --> <!-- Struts: Standard Action Servlet Configuration --> <servlet> <servlet-name>action</servlet-name> <servlet-class>org.apache.struts.action.ActionServlet</servlet-class> <init-param> <param-name>config</param-name> <param-value>/WEB-INF/struts-config.xml</param-value> </init-param> <init-param> <param-name>debug</param-name> <param-value>3</param-value> </init-param> <load-on-startup>2</load-on-startup> </servlet> <!-- ================ --> <!-- SERVLET MAPPINGS --> <!-- ================ --> <!-- STRUTS SUPPORT --> <!-- Struts: Standard Action Servlet Mapping --> <servlet-mapping> <servlet-name>action</servlet-name> <url-pattern>*.do</url-pattern> </servlet-mapping> <!-- ===================== --> <!-- SESSION CONFIGURATION --> <!-- ===================== --> <session-config> <session-timeout>30</session-timeout> </session-config> <mime-mapping> <extension>xml</extension> <mime-type>text/xml</mime-type> </mime-mapping> <!-- ============= --> <!-- WELCOME FILES --> <!-- ============= --> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.jsp</welcome-file> </welcome-file-list> <!-- =============== --> <!-- TAGLIB MAPPINGS --> <!-- =============== --> <taglib> <taglib-uri>/tags/struts-bean</taglib-uri> <taglib-location>/WEB-INF/struts-bean.tld</taglib-location> </taglib> <taglib> <taglib-uri>/tags/struts-logic</taglib-uri> <taglib-location>/WEB-INF/struts-logic.tld</taglib-location> </taglib> <taglib> <taglib-uri>/tags/struts-html</taglib-uri> <taglib-location>/WEB-INF/struts-html.tld</taglib-location> </taglib> <taglib> <taglib-uri>/tags/struts-tiles</taglib-uri> <taglib-location>/WEB-INF/struts-tiles.tld</taglib-location> </taglib> <taglib> <taglib-uri>/tags/struts-nested</taglib-uri> <taglib-location>/WEB-INF/struts-nested.tld</taglib-location> </taglib> <!-- =========================== --> <!-- RESOURCE REFERENCES --> <!-- =========================== --> <!-- The resource-ref element contains a declaration of a web application's reference to an external resource. It consists of an option description, the resource manager connection factory reference name, the indications of the resource manager connection factory type expected by the web application code, the type of authentication (Application or Container). --> <resource-ref> <description>RainForest DB Connection</description> <res-ref-name>jdbc/RainForestDB</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> </resource-ref> <!-- =========================== --> <!-- SECURITY CONSTRAINTS --> <!-- =========================== --> <!-- =========================== --> <!-- LOGIN CONFIGS --> <!-- =========================== --> <!-- =========================== --> <!-- SECURITY ROLES --> <!-- =========================== --> </web-app>
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56204
|
|
|
Moved to Servlets
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: server side processing error
|
|
|