although in my @Webservice class I extend SpringBeanAutowiringSupport, autowiring simply does not work for Spring 2.5, tomcat6.
nothing is injected.
I tested those beans autowiring in main method, using classpathcontext, everything is injected fine. But not for jax-ws endpoint.
do you have ideas?
I'm guessing that you're using this config element:
<context:annotation-config />
But to enable support for the @Endpoint annotation, you must add this element:
<context:component-scan base-package="" />