vkmohan wrote: > Trying to upgrade from 2.1.1.SNAPSHOT to 2.1.2 version of CXF. My service is > working fine currently on 2.1.1.SNAPSHOT. > > After migration my service is failing to deploy with the error > org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean > named 'org.apache.cxf.bus.CXFBusImpl' is defined > > Attached my web.xml, spring bean configuration file beans.xml and the Error > message with stack trace. Changed the names to protect company information. > > Appreciate any help in resolving the issue. We would like to migrate to > newer versions of cxf to keep current.
That looks like it's expecting the bus="..." to contain the bean name rather than the type. It ought to work without a bus attribute at all, but if it doesn't, try "cxf" (the default name of the Bus bean). Ian -- Ian Roberts | Department of Computer Science [EMAIL PROTECTED] | University of Sheffield, UK
