On Wednesday, February 08, 2012 6:13:31 PM Alois wrote: > Hi all, > > I'm setting up a web service using JaxWsServerFactoryBean. > How can I make resources available to the service class? Is it supported > that a constructor with parameters is called when instantiating the > service class?
Not directly, no. However, you can create the bean yourself and then call factory.setServiceBean(bean) with it. Thus, CXF doesn't control the construction of the bean, you would. Dan > What other possibilities are there to pass information to an instance of > the service class? > > > Thanks in advance > > Alois -- Daniel Kulp [email protected] - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com
