[
https://issues.apache.org/jira/browse/CXF-2667?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Willem Jiang resolved CXF-2667.
-------------------------------
Resolution: Fixed
Now CXF support to configure the bus like this
{code}
<bean id="cxf1" class="org.apache.cxf.bus.CXFBusImpl"/>
<bean id="cxf2" class="org.apache.cxf.bus.CXFBusImpl"/>
<cxf:bus bus="cxf1">
<cxf:outInterceptors>
<bean id="logOutbound"
class="org.apache.cxf.interceptor.LoggingOutInterceptor"/>
</cxf:outInterceptors>
</cxf:bus>
<cxf:bus bus="cxf2">
<cxf:inInterceptors>
<bean id="logInbound"
class="org.apache.cxf.interceptor.LoggingInInterceptor"/>
</cxf:inInterceptors>
</cxf:bus>
{code}
> bus configure should provides bus attribute to set the bus
> ----------------------------------------------------------
>
> Key: CXF-2667
> URL: https://issues.apache.org/jira/browse/CXF-2667
> Project: CXF
> Issue Type: Bug
> Components: Configuration
> Reporter: Willem Jiang
> Assignee: Willem Jiang
> Fix For: 2.2.7, 2.3, 2.2.8
>
>
> current
> [core.xsd|https://svn.apache.org/repos/asf/cxf/trunk/rt/core/src/main/resources/schemas/core.xsd]
> doesn't have the attribute of bus , but in the
> [BusDefinitionParser.java|https://svn.apache.org/repos/asf/cxf/trunk/rt/core/src/main/java/org/apache/cxf/bus/spring/BusDefinitionParser.java],
> you can see it supports setting the bus attribute.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.