I'd like to implement my interfaces using Groovy-scripted Spring Beans but get errors when referring to the beans by id within the "implementor" attribute of my endpoint (configured via Spring).
<lang:groovy id="helloService" script-source="classpath:a/b/c/webservices/HelloServiceImpl.groovy"/> <jaxws:endpoint id="hello" implementor="#helloService" address="/Hello" /> <-- does not work HelloServiceImpl implements the HelloService interface. Any ideas? Regards, Kaleb Walton