[jboss-cvs] JBossAS SVN: r61328 - branches/Branch_4_2/testsuite/src/resources/web/programmatic/WEB-INF.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Mar 14 12:11:27 EDT 2007


Author: anil.saldhana at jboss.com
Date: 2007-03-14 12:11:26 -0400 (Wed, 14 Mar 2007)
New Revision: 61328

Removed:
   branches/Branch_4_2/testsuite/src/resources/web/programmatic/WEB-INF/jbosstest-web.xml.orig
Log:
remove the redundant webxml

Deleted: branches/Branch_4_2/testsuite/src/resources/web/programmatic/WEB-INF/jbosstest-web.xml.orig
===================================================================
--- branches/Branch_4_2/testsuite/src/resources/web/programmatic/WEB-INF/jbosstest-web.xml.orig	2007-03-14 16:09:52 UTC (rev 61327)
+++ branches/Branch_4_2/testsuite/src/resources/web/programmatic/WEB-INF/jbosstest-web.xml.orig	2007-03-14 16:11:26 UTC (rev 61328)
@@ -1,64 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<web-app version="2.4"
-   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">
-
-   <description>Programmatic Web Login Tests</description>
-
-   <!-- ### Servlets -->
-   <servlet>
-      <servlet-name>TestServlet</servlet-name>
-      <servlet-class>org.jboss.test.web.servlets.ProgrammaticLoginTestServlet</servlet-class>
-   </servlet>
-   <servlet>
-      <servlet-name>ForwardedServlet</servlet-name>
-      <jsp-file>/forwarded.jsp</jsp-file>
-   </servlet>
-
-   <!-- The servlet and jsp page mappings -->
-   <servlet-mapping>
-      <servlet-name>TestServlet</servlet-name>
-      <url-pattern>/TestServlet</url-pattern>
-   </servlet-mapping>
-   <servlet-mapping>
-      <servlet-name>ForwardedServlet</servlet-name>
-      <url-pattern>/ForwardedServlet</url-pattern>
-   </servlet-mapping>
-
-
-   <!-- ### Security -->
-   <security-constraint>
-      <web-resource-collection>
-         <web-resource-name>Restricted</web-resource-name>
-         <description>Declarative security tests</description>
-         <url-pattern>/restricted/*</url-pattern>
-         <http-method>HEAD</http-method>
-         <http-method>GET</http-method>
-         <http-method>POST</http-method>
-         <http-method>PUT</http-method>
-         <http-method>DELETE</http-method>
-      </web-resource-collection>
-      <auth-constraint>
-         <description>Only authenticated users can access secure content</description>
-         <role-name>AuthorizedUser</role-name>
-      </auth-constraint>
-      <user-data-constraint>
-         <description>no description</description>
-         <transport-guarantee>NONE</transport-guarantee>
-      </user-data-constraint>
-   </security-constraint>
-
-   <login-config>
-      <auth-method>BASIC</auth-method>
-      <realm-name>JBossTest Servlets</realm-name>
-   </login-config>
-
-   <security-role>
-      <description>An AuthorizedUser is one with a valid username and password</description>
-      <role-name>AuthorizedUser</role-name>
-   </security-role>
-</web-app>
-




More information about the jboss-cvs-commits mailing list