i have a Karaf-based app that contains a camel route with multiple
<cxfEndpoint> instances that look something like this:


*    <camel-cxf:cxfEndpoint id="Endpoint_1"
                     continuationTimeout="43200000"
                     serviceClass="com.teamcenter.esb.service.WebService"
                     address="http://0.0.0.0:8080/myapp/Endpoint1";>
        <camel-cxf:inInterceptors>
            <beans:bean class="com.foo.blah.MyAuthInterceptor"/>
        </camel-cxf:inInterceptors>
    </camel-cxf:cxfEndpoint>

    <camel-cxf:cxfEndpoint id="Endpoint_2"
                     continuationTimeout="43200000"
                     serviceClass="com.teamcenter.esb.service.WebService"
                     address="http://0.0.0.0:8080/myapp/Endpoint2";>
        <camel-cxf:inInterceptors>
            <beans:bean class="com.foo.blah.MyAuthInterceptor"/>
        </camel-cxf:inInterceptors>
    </camel-cxf:cxfEndpoint>*



while on Karaf 4.1.4, i was able to make all sorts of calls to both
endpoints while still on the same session, regardless of which endpoint the
session was created on. but now the only endpoint i am able to access is the
one where the session was created. any idea what is causing this? camel and
cxf went from 2.20->2.23 and 3.2.1->3.2.7, respectively, so that was not
much of a change. jetty on the other had did have a major 9.3->9.4 move.
thanks!



--
Sent from: http://karaf.922171.n3.nabble.com/Karaf-User-f930749.html

Reply via email to