OK, it turned out that the actual problem was caused due to a change in
Spring as on replacing 

@Configuration
@ImportResource({ "classpath:META-INF/cxf/cxf.xml" })
public class CxfEndpointConfig extends SoapSSLConfig
{
    ...
}

with

@Configuration
@ImportResource({ "classpath:META-INF/cxf/cxf.xml" })
@Import(SoapSSLConfig.class)
public class CxfEndpointConfig
{
    ...
}

solved the protocol mismatch error as the invocation of the
JettyHttpServerEngineFactory bean succeeds and therefore the SSL secured
Jetty server is able to start up.



--
View this message in context: 
http://cxf.547215.n5.nabble.com/CXF-3-0-1-Spring-bean-injection-of-JettyHTTPServerEngineFactory-ignored-tp5750214p5750226.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to