java - IS camel get http request from jetty -


my camel router :

<cxf:cxfendpoint id="chdendpoint"     address="http://0.0.0.0:8080/chd-esb/callservice"      endpointname="s:realserverimplport"     servicename="s:realserverimplservice" wsdlurl="wsdl/realserver.wsdl"     xmlns:s="http://server.example.com/" />  <route id="chd-webservice">       <from uri="cxf:bean:chdendpoint?dataformat=message" />       <log message="get client call webservice!" />     <to ref="callchdrealwebservice" />     <log message="get real webservice back" />     </route> 

i deploy camel router in karaf. want know if client call webservice ,the http request first jetty , jetty put request camel camel use cxf call real webservice

you use apache cxf, eg cxfendpoint publish web service on karaf server. , when apache cxf uses http service of apache karaf, jetty based. in bottom line, jetty used.

apache karaf has etc/jetty.xml configuration file, jetty configured.

you can find details osgi http service , jetty on karaf website, such as: http://karaf.apache.org/manual/latest-2.3.x/users-guide/http.html


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -