Advertisement
gusto2

osgi blueprint cxf jaxws

Oct 5th, 2013
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.04 KB | None | 0 0
  1. <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
  2.    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.    xmlns:jaxws="http://cxf.apache.org/blueprint/jaxws"
  4.    xmlns:cxf="http://cxf.apache.org/blueprint/core"
  5.    xsi:schemaLocation="
  6. http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  7. http://cxf.apache.org/blueprint/core http://cxf.apache.org/schemas/blueprint/core.xsd
  8. http://cxf.apache.org/blueprint/jaxws http://cxf.apache.org/schemas/blueprint/jaxws.xsd">
  9. <!-- === origin: http://svn.apache.org/repos/asf/servicemix/smx5/trunk/examples/cxf/cxf-jaxws-blueprint/src/main/resources/OSGI-INF/blueprint/blueprint.xml === -->
  10.     <cxf:bus>
  11.     <cxf:features>
  12.         <cxf:logging/>
  13.     </cxf:features>
  14.     </cxf:bus>
  15.         <bean id="ws2Impl" class="com.apogado.test.localcomm.ws2.LocalWs2Impl" />
  16.        
  17.         <jaxws:endpoint id="helloWs2"
  18.                       implementor="#ws2Impl"
  19.                       address="/localcomm/ws2">
  20.         </jaxws:endpoint>
  21. </blueprint>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement