Author: owulff
Date: Wed Mar  6 20:22:59 2013
New Revision: 1453533

URL: http://svn.apache.org/r1453533
Log:
Example wsclientWebapp uses new FederationFilter

Modified:
    cxf/fediz/trunk/examples/wsclientWebapp/webapp/pom.xml
    
cxf/fediz/trunk/examples/wsclientWebapp/webapp/src/main/webapp/WEB-INF/web.xml

Modified: cxf/fediz/trunk/examples/wsclientWebapp/webapp/pom.xml
URL: 
http://svn.apache.org/viewvc/cxf/fediz/trunk/examples/wsclientWebapp/webapp/pom.xml?rev=1453533&r1=1453532&r2=1453533&view=diff
==============================================================================
--- cxf/fediz/trunk/examples/wsclientWebapp/webapp/pom.xml (original)
+++ cxf/fediz/trunk/examples/wsclientWebapp/webapp/pom.xml Wed Mar  6 20:22:59 
2013
@@ -57,12 +57,7 @@
             <groupId>org.apache.cxf.fediz</groupId>
             <artifactId>fediz-core</artifactId>
             <version>${project.version}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>*</groupId>
-                    <artifactId>*</artifactId>
-                </exclusion>
-            </exclusions>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.cxf.fediz</groupId>

Modified: 
cxf/fediz/trunk/examples/wsclientWebapp/webapp/src/main/webapp/WEB-INF/web.xml
URL: 
http://svn.apache.org/viewvc/cxf/fediz/trunk/examples/wsclientWebapp/webapp/src/main/webapp/WEB-INF/web.xml?rev=1453533&r1=1453532&r2=1453533&view=diff
==============================================================================
--- 
cxf/fediz/trunk/examples/wsclientWebapp/webapp/src/main/webapp/WEB-INF/web.xml 
(original)
+++ 
cxf/fediz/trunk/examples/wsclientWebapp/webapp/src/main/webapp/WEB-INF/web.xml 
Wed Mar  6 20:22:59 2013
@@ -18,18 +18,12 @@
        <filter>
                <filter-name>FederationFilter</filter-name>
                
<filter-class>org.apache.cxf.fediz.cxf.web.FederationFilter</filter-class>
-               <!--
-               <init-param>
-                       <param-name>security.token.attribute</param-name>
-                       
<param-value>org.apache.fediz.SECURITY_TOKEN</param-value>
-               </init-param>
-               -->
        </filter>
 
        <!-- now map this filter to a URL-pattern -->
        <filter-mapping>
                <filter-name>FederationFilter</filter-name>
-               <url-pattern>/*</url-pattern>
+               <url-pattern>/secure/*</url-pattern>
        </filter-mapping>
 
        <servlet>


Reply via email to