| On the server side, it uses this for invocation of the web service
@WebService (endpointInterface="I")
class A { }
In this case, it retuns A's method
@WebService (endpointInterface="I")
class A implements I { }
In this case, it returns A's method
@WebService class A { }
In this case, it returns A's method
Returns the java Method |