1 Reply Latest reply on Dec 21, 2007 6:47 AM by roele

    EJB3 WebService Deployment inside EAR

    roele

      I try to deploy some EJB3 Services, one of them is exposed as a WebService via Annotations. If i deploy my packaged JAR archive into my JBoss 4.2.2 Server, everything seems fine (up and running) but if i deploy this JAR inside an EAR archive the WebService does not work while the other services work as expected.

      The JAR is referenced as an ejb module inside my application.xml

      Am i missing something?

        • 1. Re: EJB3 WebService Deployment inside EAR
          roele

          It seems i found the major problem of this weird behavior. I exposed my WebService through an interface annotated with @WebService, then my ServiceBean implemented this interface which not worked at all. Later on i tried to annotate my ServiceBean directly which seems to work fine...
          Is this a known issue or did i still miss something?