From: Michael S. <sta...@us...> - 2005-10-05 18:16:04
|
Update of /cvsroot/archive-access/archive-access/projects/wera/src/webapps/arcretriever/WEB-INF In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1719/src/webapps/arcretriever/WEB-INF Added Files: web.xml Log Message: Added building of the arcretriever war file. --- NEW FILE: web.xml --- <?xml version="1.0" ?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <!-- Copyright (c) 2002 by ObjectLearn. All Rights Reserved. --> <web-app> <display-name>arcretriever</display-name> <description>ArcRetriever module for wera</description> <context-param> <param-name>ArcRetrieverConfig</param-name> <param-value>WEB-INF/arcretriever.properties</param-value> <description>The location of the ARCRetriever properties file</description> </context-param> <servlet> <servlet-name>arcretriever</servlet-name> <servlet-class>no.nb.nwa.ARCRetriever</servlet-class> </servlet> <servlet-mapping> <servlet-name>arcretriever</servlet-name> <url-pattern>/arcretriever</url-pattern> </servlet-mapping> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> <error-page> <error-code>404</error-code> <location>/error.jsp</location> </error-page> </web-app> |