trying to use "local" protocol with the following spring config with
cxf-2.4.0
throws errors when in version : 2.3.3 it worked - just have to replace
HTTPTransportFactory with ClientOnlyHttpTransportFactory.
i think this is a bug in version 2.4.0.
here's a fragment of my spring config . it doesn't really matter if i do
lazy-init="true" or lazy-init="false".
<bean class="org.apache.cxf.transport.local.LocalTransportFactory"
lazy-init="false">
<property name="transportIds">
<list>
<value>http://cxf.apache.org/transports/local</value>
</list>
</property>
</bean>
<bean class="org.apache.cxf.transport.http.HTTPTransportFactory"
lazy-init="true">
<property name="transportIds">
<list>
<value>http://cxf.apache.org/bindings/xformat</value>
<value>http://schemas.xmlsoap.org/soap/http</value>
<value>http://schemas.xmlsoap.org/wsdl/soap/http</value>
</list>
</property>
</bean>
regards
--
View this message in context:
http://cxf.547215.n5.nabble.com/CXF-2-4-0-possible-bug-in-HTTP-and-Local-Transport-Configs-incompatible-tp4380345p4380345.html
Sent from the cxf-issues mailing list archive at Nabble.com.