Apache CXF JaxWsServerFactoryBean をコンソール モードで使用すると (Java コマンド ラインでサーバーを起動しようとすると)、次のような例外が発生します。
Caused by: java.io.IOException: Cannot find any registered HttpDestinationFactory from the Bus.
at org.apache.cxf.transport.http.HTTPTransportFactory.getDestination(HTTPTransportFactory.java:295)
at org.apache.cxf.binding.soap.SoapTransportFactory.getDestination(SoapTransportFactory.java:143)
at org.apache.cxf.endpoint.ServerImpl.initDestination(ServerImpl.java:93)
at org.apache.cxf.endpoint.ServerImpl.<init>(ServerImpl.java:72)
at org.apache.cxf.frontend.ServerFactoryBean.create(ServerFactoryBean.java:160)
Spring 経由で Tomcat で同じサービス impl を使用すると、機能します。
<jaxws:endpoint id="abc" implementor="com.AbcServicePortTypeImpl" address="/abc">