You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ff...@apache.org on 2007/06/18 07:14:33 UTC

svn commit: r548218 - in /incubator/cxf/trunk/distribution/src/main/release/samples: hello_world/wsdl/ hello_world_RPCLit/wsdl/ hello_world_xml_bare/wsdl/ hello_world_xml_wrapped/wsdl/ soap12/wsdl/ soap_header/wsdl/

Author: ffang
Date: Sun Jun 17 22:14:32 2007
New Revision: 548218

URL: http://svn.apache.org/viewvc?view=rev&rev=548218
Log:
add log feature for servlet samples

Modified:
    incubator/cxf/trunk/distribution/src/main/release/samples/hello_world/wsdl/cxf-servlet.xml
    incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_RPCLit/wsdl/cxf-servlet.xml
    incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_bare/wsdl/cxf-servlet.xml
    incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_wrapped/wsdl/cxf-servlet.xml
    incubator/cxf/trunk/distribution/src/main/release/samples/soap12/wsdl/cxf-servlet.xml
    incubator/cxf/trunk/distribution/src/main/release/samples/soap_header/wsdl/cxf-servlet.xml

Modified: incubator/cxf/trunk/distribution/src/main/release/samples/hello_world/wsdl/cxf-servlet.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/hello_world/wsdl/cxf-servlet.xml?view=diff&rev=548218&r1=548217&r2=548218
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/hello_world/wsdl/cxf-servlet.xml (original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/hello_world/wsdl/cxf-servlet.xml Sun Jun 17 22:14:32 2007
@@ -31,13 +31,8 @@
         implementor="demo.hw.server.GreeterImpl"
         wsdlLocation="WEB-INF/wsdl/hello_world.wsdl"
         address="/hello_world">
-                <jaxws:inInterceptors>
-                        <bean class="org.apache.cxf.interceptor.LoggingInInterceptor">
-                        </bean>
-                </jaxws:inInterceptors>
-                <jaxws:outInterceptors>
-                        <bean class="org.apache.cxf.interceptor.LoggingOutInterceptor">
-                        </bean>
-                </jaxws:outInterceptors>
+                <jaxws:features>
+ 		    <bean class="org.apache.cxf.feature.LoggingFeature"/>
+                </jaxws:features>
     </jaxws:endpoint>
 </beans>

Modified: incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_RPCLit/wsdl/cxf-servlet.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_RPCLit/wsdl/cxf-servlet.xml?view=diff&rev=548218&r1=548217&r2=548218
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_RPCLit/wsdl/cxf-servlet.xml (original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_RPCLit/wsdl/cxf-servlet.xml Sun Jun 17 22:14:32 2007
@@ -30,6 +30,10 @@
         id="hello_world_rpclit"
         implementor="demo.hwRPCLit.server.GreeterRPCLitImpl"
         wsdlLocation="WEB-INF/wsdl/hello_world_RPCLit.wsdl"
-        address="/hello_world_rpclit" />
+        address="/hello_world_rpclit">
+        <jaxws:features>
+            <bean class="org.apache.cxf.feature.LoggingFeature"/>
+        </jaxws:features>
+    </jaxws:endpoint>
 
 </beans>

Modified: incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_bare/wsdl/cxf-servlet.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_bare/wsdl/cxf-servlet.xml?view=diff&rev=548218&r1=548217&r2=548218
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_bare/wsdl/cxf-servlet.xml (original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_bare/wsdl/cxf-servlet.xml Sun Jun 17 22:14:32 2007
@@ -30,5 +30,9 @@
         id="hello_world"       
         implementor="demo.hw.server.GreeterImpl"
         wsdlLocation="WEB-INF/wsdl/hello_world.wsdl"
-        address="/hello_world"/>
+        address="/hello_world">
+        <jaxws:features>
+            <bean class="org.apache.cxf.feature.LoggingFeature"/>
+        </jaxws:features>
+    </jaxws:endpoint>
 </beans>

Modified: incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_wrapped/wsdl/cxf-servlet.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_wrapped/wsdl/cxf-servlet.xml?view=diff&rev=548218&r1=548217&r2=548218
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_wrapped/wsdl/cxf-servlet.xml (original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_wrapped/wsdl/cxf-servlet.xml Sun Jun 17 22:14:32 2007
@@ -30,6 +30,10 @@
         id="hello_world_xml_wrapped"
         implementor="demo.hw.server.GreeterImpl"
         wsdlLocation="WEB-INF/wsdl/hello_world.wsdl"      
-        address="/hello_world" />
+        address="/hello_world">
+        <jaxws:features>
+            <bean class="org.apache.cxf.feature.LoggingFeature"/>
+        </jaxws:features>
+    </jaxws:endpoint>
 
 </beans>

Modified: incubator/cxf/trunk/distribution/src/main/release/samples/soap12/wsdl/cxf-servlet.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/soap12/wsdl/cxf-servlet.xml?view=diff&rev=548218&r1=548217&r2=548218
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/soap12/wsdl/cxf-servlet.xml (original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/soap12/wsdl/cxf-servlet.xml Sun Jun 17 22:14:32 2007
@@ -30,6 +30,10 @@
         id="hello_world_soap12"       
         implementor="demo.hw.server.GreeterImpl"
         wsdlLocation="WEB-INF/wsdl/hello_world_soap12.wsdl"
-        address="/hello_world_soap12" />
+        address="/hello_world_soap12">
+         <jaxws:features>
+             <bean class="org.apache.cxf.feature.LoggingFeature"/>
+         </jaxws:features>
+    </jaxws:endpoint>
 
 </beans>

Modified: incubator/cxf/trunk/distribution/src/main/release/samples/soap_header/wsdl/cxf-servlet.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/soap_header/wsdl/cxf-servlet.xml?view=diff&rev=548218&r1=548217&r2=548218
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/soap_header/wsdl/cxf-servlet.xml (original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/soap_header/wsdl/cxf-servlet.xml Sun Jun 17 22:14:32 2007
@@ -30,5 +30,9 @@
         id="soap_headers"
         implementor="demo.soap_header.server.HeaderTesterImpl"
         wsdlLocation="WEB-INF/wsdl/soap_header.wsdl"
-        address="/soap_header" />
+        address="/soap_header">
+        <jaxws:features>
+            <bean class="org.apache.cxf.feature.LoggingFeature"/>
+        </jaxws:features>
+    </jaxws:endpoint>
 </beans>