2

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.

Pascal Thivent
  • 562,542
  • 136
  • 1,062
  • 1,124
jumar
  • 5,360
  • 8
  • 46
  • 42

1 Answers1

0

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.

Pascal Thivent
  • 562,542
  • 136
  • 1,062
  • 1,124