1 Reply Latest reply on Jun 14, 2006 3:43 PM by pablojavierpy

    EJB3 Webservice with JSR109

    jpremji

      I have recently created and EJB3 session bean and exposed it as a webservice with JSR181. Is it possible to expose it using the JSR109 api instead or any way of changing the wsdl file in the JSR181.

        • 1. Re: EJB3 Webservice with JSR109
          pablojavierpy

          You can manually change de WSDL file in WebService with JSR181.

          Use the @WebService annotation like this:

          @WebService(name="JMSTransportPortType",
           serviceName="JMSTransportService",
           targetNamespace="http://example.org", wsdlLocation="location of your wsdl")


          I got the annotations reference from here:
          http://edocs.beasys.com/wls/docs92/webserv/annotations.html#wp1042425

          Regards.