Basically, you can use the @WebMethod(exclude=true) to exclude the
methods that you don't want it to be exposed.
James
Hi,
Aegis Binding is a data binding , it will not effect which method will
be export to the web service.
If you are using JaxWs front end , you could use the annotation to
define your SEI ( which will be mapped to the WSDL operation)
You can find the example here[1].
[1]https://svn.apache.org/repos/asf/incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/Hello.java
Willem.
tcs wrote:
I'm using CXF (with Aegis Binding) to create a simple Web Service.
My web
service impl. class extends other classes. Not only are the methods
in my
web service impl. class exposed in the WSDL generated by CXF, but
methods
from the parent class are also exposed.
Is there a way to control which methods are exposed using the default
Aegis
Binding.
thanks,