Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For example, by replacing the bus bean defined in cxf.xml with this bean in your configuration file:

Code Block

<bean id="cxf" class="org.apache.cxf.bus.spring.SpringBus">
    <property name="outInterceptors">
           <list>
              <ref bean="myLoggingInterceptor"/>
           </list>
        </property>
</bean>

<bean id="myLogHandler" class="org.mycompany.com.cxf.logging.LoggingInterceptor">
    ...
</bean>

...