1 Reply Latest reply on Nov 17, 2006 4:12 AM by thomas.diesler

    Interfaces and Webservice

      I have an EJB method that I want to expose where all of its methods take and return interfaces. Is there a way that I can expose these methods through a webservice and specify that requests should use a specific implementation of the interfaces that I have created?

        • 1. Re: Interfaces and Webservice
          thomas.diesler

          As long as the interfaces contain the complete signature and are not extended by the concrete implementation that should be no problem.

          Otherwise, this is a tools issue. When you go <java-wsdl> you must find a way to produce the correct abstract contract. i.e. the wsdl contained schema must contain definitions of all concrete types.

          AFAIK, there is no tool that can guess the transitve closure of an interface