Re: cxf - Spring autowire Problem

2009-02-13 Thread paolocollector
Ok, it works now. I had to put the bean declaration in the ApplicationContext.xml and the jaxws:endpoint declaration in the cxf.xml I am not sure why, but this way it does work. The only problem left is that I had to move the cllient in a different project because it doesn't like the line imple

Re: cxf - Spring autowire Problem

2009-02-12 Thread paolocollector
Woaw this was quick, thanks Dan! I just have this in cxf.xml: I am sure you are right, Spring does not know about my webservice. I thought that putting @WebService(endpointInterface = "minitest.service.MiniService", serviceName = "MiniService") before

cxf - Spring autowire Problem

2009-02-12 Thread paolocollector
Hi all i am having trouble using Spring 2.5 annotation with cxf I reduced all tha application to a mini manager and a webservice the manager code is @Service public class MiniManagerImpl implements MiniManager { [...] and the webservice @WebService(endpointInterface = "minitest.servi