Author: ningjiang
Date: Mon Apr 16 08:13:23 2007
New Revision: 529282

URL: http://svn.apache.org/viewvc?view=rev&rev=529282
Log:
CXF-535 Updated cxf-servlet.xml in the samples

Modified:
    
incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_wrapped/wsdl/cxf-servlet.xml
    
incubator/cxf/trunk/distribution/src/main/release/samples/mtom/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_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=529282&r1=529281&r2=529282
==============================================================================
--- 
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
 Mon Apr 16 08:13:23 2007
@@ -17,15 +17,19 @@
   specific language governing permissions and limitations
   under the License.
 -->
-<endpoints>
+<beans xmlns="http://www.springframework.org/schema/beans";
+      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+      xmlns:jaxws="http://cxf.apache.org/jaxws";
+      xmlns:soap="http://cxf.apache.org/bindings/soap";
+      xsi:schemaLocation="
+http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+http://cxf.apache.org/bindings/soap 
http://cxf.apache.org/schema/bindings/soap.xsd
+http://cxf.apache.org/jaxws http://cxf.apache.org/schema/jaxws.xsd";>
 
-    <endpoint
-        name="hello_world"
-        interface="org.apache.hello_world_soap_http.Greeter"
-        implementation="demo.hw.server.GreeterImpl"
-        wsdl="WEB-INF/wsdl/hello_world.wsdl"
-        service="{http://apache.org/hello_world_soap_http}SOAPService";
-        port="{http://apache.org/hello_world_soap_http}SOAPPort";
-        url-pattern="/hello_world" />
+    <jaxws:endpoint
+        id="hello_world_xml_wrapped"
+        implementor="demo.hw.server.GreeterImpl"
+        wsdlLocation="WEB-INF/wsdl/hello_world.wsdl"      
+        address="/services/hello_world" />
 
-</endpoints>
+</beans>

Modified: 
incubator/cxf/trunk/distribution/src/main/release/samples/mtom/wsdl/cxf-servlet.xml
URL: 
http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/mtom/wsdl/cxf-servlet.xml?view=diff&rev=529282&r1=529281&r2=529282
==============================================================================
--- 
incubator/cxf/trunk/distribution/src/main/release/samples/mtom/wsdl/cxf-servlet.xml
 (original)
+++ 
incubator/cxf/trunk/distribution/src/main/release/samples/mtom/wsdl/cxf-servlet.xml
 Mon Apr 16 08:13:23 2007
@@ -27,7 +27,7 @@
 http://cxf.apache.org/jaxws http://cxf.apache.org/schema/jaxws.xsd";>
 
     <jaxws:endpoint
-        name="mtom"
+        id="mtom"
         implementor="demo.mtom.server.TestMtomImpl"
         wsdlLocation="WEB-INF/wsdl/mtom_xop.wsdl"
         address="/services/mtom" />

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=529282&r1=529281&r2=529282
==============================================================================
--- 
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
 Mon Apr 16 08:13:23 2007
@@ -27,7 +27,7 @@
 http://cxf.apache.org/jaxws http://cxf.apache.org/schema/jaxws.xsd";>
 
     <jaxws:endpoint
-        name="hello_world_soap12"       
+        id="hello_world_soap12"       
         implementor="demo.hw.server.GreeterImpl"
         wsdlLocation="WEB-INF/wsdl/hello_world_soap12.wsdl"
         address="/server/hello_world_soap12" />

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=529282&r1=529281&r2=529282
==============================================================================
--- 
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
 Mon Apr 16 08:13:23 2007
@@ -27,7 +27,7 @@
 http://cxf.apache.org/jaxws http://cxf.apache.org/schema/jaxws.xsd";>
 
     <jaxws:endpoint
-        name="soap_headers"
+        id="soap_headers"
         implementor="demo.soap_header.server.HeaderTesterImpl"
         wsdl="WEB-INF/wsdl/soap_header.wsdl"
         address="/services/soap_header" />


Reply via email to