Question

I Have a web service implementation class in java and I use wsgen to generate the service end point classes. There is a public method in my SEI that I want to exclude from the web-service interface. It seems that the annotation

@WebMethod (exclude=true)

is meant to do that but it does not seem to work with the wsgen ant task.

Was it helpful?

Solution

This sounds like Issue #789 (bug in wsgen). Maye give the suggested workaround a try:

As a temporary workaround with old impl, you can try removing the @WebMethod on non-excluded methods.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top