CXF Method Not Found When Further Annotated

When using CXF and the JAXWS annotations to publish web services, like this:

@WebService(targetNamespace = "http://blah")
public class ClientData {
@WebMethod
public String getSomething() {
return something;
}
}

you can experience problems if you annotate the web service methods with something that spring-aop needs to process. Like when using perf4js nice @Profiled [...]

December 3, 2009  Tags: , , , ,   Posted in: Programming  No Comments