Author: gmazza
Date: Sun Nov  6 07:42:53 2011
New Revision: 1198202

URL: http://svn.apache.org/viewvc?rev=1198202&view=rev
Log:
Reverted previous change; updated wrong sample.

Modified:
    
cxf/trunk/distribution/src/main/release/samples/wsdl_first/src/main/webapp/WEB-INF/cxf-servlet.xml

Modified: 
cxf/trunk/distribution/src/main/release/samples/wsdl_first/src/main/webapp/WEB-INF/cxf-servlet.xml
URL: 
http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/wsdl_first/src/main/webapp/WEB-INF/cxf-servlet.xml?rev=1198202&r1=1198201&r2=1198202&view=diff
==============================================================================
--- 
cxf/trunk/distribution/src/main/release/samples/wsdl_first/src/main/webapp/WEB-INF/cxf-servlet.xml
 (original)
+++ 
cxf/trunk/distribution/src/main/release/samples/wsdl_first/src/main/webapp/WEB-INF/cxf-servlet.xml
 Sun Nov  6 07:42:53 2011
@@ -24,12 +24,15 @@
       xsi:schemaLocation="
 http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans.xsd
 http://cxf.apache.org/bindings/soap 
http://cxf.apache.org/schemas/configuration/soap.xsd
-http://cxf.apache.org/jaxws
-http://cxf.apache.org/schemas/jaxws.xsd";>
+http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd";>
+
+    <jaxws:endpoint xmlns:customer="http://customerservice.example.com/";
+            id="CustomerServiceHTTP" address="/CustomerServicePort"
+            serviceName="customer:CustomerServiceService" 
endpointName="customer:CustomerServicePort"
+            
implementor="com.example.customerservice.server.CustomerServiceImpl">
+       <!--jaxws:properties>
+           <entry key="schema-validation-enabled" value="true" />
+       </jaxws:properties-->
+    </jaxws:endpoint>
 
-  <jaxws:server id="jaxwsService" serviceClass="demo.hw.server.HelloWorld" 
address="/hello_world">
-       <jaxws:serviceBean>
-               <bean class="demo.hw.server.HelloWorldImpl" />
-       </jaxws:serviceBean>
-  </jaxws:server>
 </beans>


Reply via email to