On Wednesday 10 November 2010 6:28:08 am Fabio wrote: > Hi All, > > Is it possible create a simple CXF client without Spring? > Because I'm developing an business component and the projects that are > going to use it, might have or not Spring or even have a very old Spring > version.
The only place where spring is absolutely REQUIRED is the JMS transport as it relies on the Spring messaging templates. For the rest of the stuff, you can CXF without spring, but it may take a little extra effort. A bunch of things like policies and the new annotation processing and stuff are not wired in without spring right now so to take advantage of those, you would need to do some pre-setup coding (add extensions to the bus and such). For the "basic" 80% cases, you shouldn't need to do any of that. -- Daniel Kulp [email protected] http://dankulp.com/blog
