Advertisement
Guest User

Untitled

a guest
May 25th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:camel="http://camel.apache.org/schema/spring"
  5. xmlns:amq="http://activemq.apache.org/schema/core"
  6. xmlns:cxf="http://camel.apache.org/schema/cxf"
  7. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
  8. http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd
  9. http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd"
  10. >
  11.  
  12. <bean id="playgroundRouteBuilder" class="lt.inventi.playground.PlaygroundRouteBuilder"/>
  13.  
  14. <amq:broker useJmx="false" persistent="true">
  15. <amq:transportConnectors>
  16. <amq:transportConnector uri="tcp://localhost:61636" />
  17. </amq:transportConnectors>
  18. </amq:broker>
  19.  
  20. <camel:camelContext id="playground-camel-context">
  21. <camel:routeBuilder ref="playgroundRouteBuilder"/>
  22. </camel:camelContext>
  23.  
  24. <cxf:cxfEndpoint id="pingPongEndpoint"
  25. address="/Ping"
  26. wsdlURL="PingPong.wsdl" endpointName="s:PingPong"
  27. serviceName="s:PingPongService"
  28. xmlns:s="http://pingpong.bpel.tps">
  29. <cxf:inInterceptors>
  30. <bean class="org.apache.cxf.transport.common.gzip.GZIPInInterceptor"/>
  31. </cxf:inInterceptors>
  32. <cxf:properties>
  33. <entry key="dataFormat" value="PAYLOAD"/>
  34. </cxf:properties>
  35. </cxf:cxfEndpoint>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement