Problem solved! The issue was using "factory-method", which required the class I called to be static. This also required that all of my properties and thier mutators be static. This resulted in my bean that passed the reference not being able to see my mutators.
The fix was to have my DAOTest class implement the InitializingBean, changing the "doPopulate()" method to "afterPropertiesSet()", and then removing all static declarations. Thanks to Joed from the IRC group for helping me figure this out. v/r, Mike Van -- View this message in context: http://karaf.922171.n3.nabble.com/Accessing-database-connections-using-SpringDM-in-Karaf-tp1932916p1993729.html Sent from the Karaf - User mailing list archive at Nabble.com.
