Use CXF JaxWsServerFactoryBean exception Cannot find any registered HttpDestinationFactory from the Bus

Include cxf-rt-transports-http-jetty jar in the maven pom.xml will solve the problem.

    <dependency>
        <groupId>org.apache.cxf</groupId>
        <artifactId>cxf-rt-transports-http-jetty</artifactId>
        <version>2.7.6</version>
    </dependency>

Leave a Comment