Hello, On the server side, below is my inheritance hierarchy. I've been trying various combinations of implement/extend and WebService/WebMethod, but all functions from MyService and SomeService are manifested in a single WSDL as if all the functions were defined in "MyService". The idea is to get a WSDL to re-create the server-side hierarchy on the client side. Is that possible? I think WCF may actually support this feature.
Thanks... Option A public interface MyService extends SomeService public MyServiceImpl implements MyService Option B public interface MyService public MyServiceImpl implements MyService, SomeService
