Hi Sergey, yes it's working correctly now. Don't know why it didn't work anymore, I already had the cxf namespace declaration, but on separate lines... maybe that was the culprit. However, I configured logging on the cxf:bus, not on a single jaxrs:server instance. Thanks for your example, the unit-tests are extremely helpful to figure things out.
-Wim. -----Original Message----- From: Sergey Beryozkin [mailto:[email protected]] Sent: donderdag 2 juli 2009 11:44 To: [email protected] Subject: Re: logging documentation bug Hi are you still seeing <cxf:logging/> not working ? I posted an update yesterday, see this example : http://svn.apache.org/repos/asf/cxf/trunk/systests/src/test/resources/ja xrs/WEB-INF/beans.xml look at 'bookservice3' endpoint, note that a 'cxf' has to be bound to a namespace declaration, see <beans> opening tag. If you still can't make it work then can you please send a stack trace ? Or is it simply ignored in your case ? cheers, Sergey ----- Original Message ----- From: "Wim Praet" <[email protected]> To: <[email protected]> Sent: Wednesday, July 01, 2009 8:24 AM Subject: RE: logging documentation bug In fact the <jaxrs:feature> config below is the same as doing: <jaxrs:server> <jaxrs:inInterceptors> <bean class="org.apache.cxf.interceptor.LoggingInInterceptor" /> </jaxrs:inInterceptors> <jaxrs:outInterceptors> <bean class="org.apache.cxf.interceptor.LoggingOutInterceptor" /> </jaxrs:outInterceptors> </jaxrs:server> I couldn't get it to work eiher with the <cxf:logging/> setting, although that works fine for jaxws endpoints. -Wim. -----Original Message----- From: Sergey Beryozkin [mailto:[email protected]] Sent: dinsdag 30 juni 2009 21:36 To: [email protected] Subject: RE: logging documentation bug Hi, What error did you see when using <cxf:logging/> ? I can see it's been defined here : http://svn.apache.org/repos/asf/cxf/trunk/rt/core/src/main/resources/sch emas/core.xsd cheers, Sergey -----Original Message----- From: Nathaniel Auvil [mailto:[email protected]] Sent: 30 June 2009 18:40 To: [email protected] Subject: logging documentation bug Just wanted to point out the logging documentation under the REST section is incorrect. The documentation says to add the following to your beans.xml: <jaxrs:server> <jaxrs:features> <cxf:logging/> </jaxrs:features> <jaxrs:server> I got it to work by doing the following: <jaxrs:server> <jaxrs:features> <ref bean="loggingFeature" /> </jaxrs:features> <jaxrs:server> ... <bean id="loggingFeature" class="org.apache.cxf.feature.LoggingFeature" />
