Author: gmazza
Date: Sun Nov  6 07:10:05 2011
New Revision: 1198151

URL: http://svn.apache.org/viewvc?rev=1198151&view=rev
Log:
New webapp directory for WAR deployment

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=1198151&r1=1198150&r2=1198151&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:10:05 2011
@@ -24,15 +24,12 @@
       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";>
-
-        <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>
+http://cxf.apache.org/jaxws
+http://cxf.apache.org/schemas/jaxws.xsd";>
 
+  <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