Greetings, I have deployed SM WEB 3.2.1 on Tomcat. There I have an assembly deployed that uses the cxf components (bridge from cxfse - cxfbc). Whenever I deploy any of these assemblies a Jetty server instance is started on port 80.
Questions: 1. Is Jetty a requirement by CXF components? 2. If so, can I configure it to use another port? Here is the xbean configuration: <beans xmlns:cxfbc="http://servicemix.apache.org/cxfbc/1.0" xmlns:myns="urn:bridge.test.com"> <classpath> <location>.</location> </classpath> <cxfbc:consumer wsdl="classpath:bridge.wsdl" service="myns:BridgeService" endpoint="BridgeService" targetService="myns:BridgeService" targetInterface="myns:BridgePort" targetEndpoint="BridgePort" busCfg="cxf.xml"> <!-- busCfg DOES NOT SEEM TO WORK --> <cxfbc:inInterceptors> <bean class="org.apache.cxf.interceptor.LoggingInInterceptor"/> </cxfbc:inInterceptors> <cxfbc:outInterceptors> <bean class="org.apache.cxf.interceptor.LoggingOutInterceptor"/> </cxfbc:outInterceptors> <cxfbc:inFaultInterceptors> <bean class="org.apache.cxf.interceptor.LoggingInInterceptor"/> </cxfbc:inFaultInterceptors> <cxfbc:outFaultInterceptors> <bean class="org.apache.cxf.interceptor.LoggingOutInterceptor"/> </cxfbc:outFaultInterceptors> </cxfbc:consumer> <cxfbc:provider wsdl="classpath:bridge.wsdl" locationURI=http://localhost/BridgeService service="myns:BridgeService" interfaceName="myns:BridgePort" endpoint="BridgePort" busCfg="cxf.xml"> <!-- busCfg DOES NOT SEEM TO WORK --> <cxfbc:inInterceptors> <bean class="org.apache.cxf.interceptor.LoggingInInterceptor"/> </cxfbc:inInterceptors> <cxfbc:outInterceptors> <bean class="org.apache.cxf.interceptor.LoggingOutInterceptor"/> </cxfbc:outInterceptors> <cxfbc:inFaultInterceptors> <bean class="org.apache.cxf.interceptor.LoggingInInterceptor"/> </cxfbc:inFaultInterceptors> <cxfbc:outFaultInterceptors> <bean class="org.apache.cxf.interceptor.LoggingOutInterceptor"/> </cxfbc:outFaultInterceptors> </cxfbc:provider> </beans> Thanks. -Kirk
