You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by ek...@apache.org on 2005/09/20 08:21:31 UTC

svn commit: r290372 - in /beehive/branches/v1/final/samples/petstoreWeb/web/WEB-INF: server-config.wsdd web.xml

Author: ekoneil
Date: Mon Sep 19 23:21:29 2005
New Revision: 290372

URL: http://svn.apache.org/viewcvs?rev=290372&view=rev
Log:
Remove Axis Servlet and .wsdd from petstoreWeb which currently doesn't include web services.

BB: self
Test: none (none of these files are used)


Removed:
    beehive/branches/v1/final/samples/petstoreWeb/web/WEB-INF/server-config.wsdd
Modified:
    beehive/branches/v1/final/samples/petstoreWeb/web/WEB-INF/web.xml

Modified: beehive/branches/v1/final/samples/petstoreWeb/web/WEB-INF/web.xml
URL: http://svn.apache.org/viewcvs/beehive/branches/v1/final/samples/petstoreWeb/web/WEB-INF/web.xml?rev=290372&r1=290371&r2=290372&view=diff
==============================================================================
--- beehive/branches/v1/final/samples/petstoreWeb/web/WEB-INF/web.xml (original)
+++ beehive/branches/v1/final/samples/petstoreWeb/web/WEB-INF/web.xml Mon Sep 19 23:21:29 2005
@@ -30,11 +30,6 @@
         <dispatcher>INCLUDE</dispatcher>
     </filter-mapping>
 
-    <servlet>
-        <servlet-name>AxisServlet</servlet-name>
-        <servlet-class>org.apache.axis.transport.http.AxisServlet</servlet-class>
-    </servlet>
-
     <!-- Standard Action Servlet Configuration (with debugging) -->
     <servlet>
         <servlet-name>action</servlet-name>
@@ -63,11 +58,6 @@
     </servlet-mapping>
 
     <servlet-mapping>
-        <servlet-name>AxisServlet</servlet-name>
-        <url-pattern>*.jws</url-pattern>
-    </servlet-mapping>
-
-    <servlet-mapping>
         <servlet-name>action</servlet-name>
         <url-pattern>*.do</url-pattern>
     </servlet-mapping>
@@ -76,30 +66,6 @@
         <welcome-file>index.jsp</welcome-file>
     </welcome-file-list>
 
-<!--
-    <security-constraint>
-        <web-resource-collection>
-            <web-resource-name>AccountPageFlow</web-resource-name>
-            <description>Protect the page flow that allows account manipulation.</description>
-            <url-pattern>/account/*</url-pattern>
-            <http-method>GET</http-method>
-        </web-resource-collection>
-        <web-resource-collection>
-            <web-resource-name>AccountPageFlow</web-resource-name>
-            <description>Protect the page flow that allows checkout.</description>
-            <url-pattern>/checkout/*</url-pattern>
-            <http-method>GET</http-method>
-        </web-resource-collection>
-        <auth-constraint>
-            <description>Roles who have access to the account manipulation pages.</description>
-            <role-name>Users</role-name>
-        </auth-constraint>
-        <user-data-constraint>
-            <description>This is how the user data must be transmitted.</description>
-            <transport-guarantee>NONE</transport-guarantee>
-        </user-data-constraint>
-    </security-constraint>
--->
     <login-config>
         <auth-method>FORM</auth-method>
         <realm-name>default</realm-name>