Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

this is a clarification question I've got from a Java EE 5 migration. I'm currently developing a Java EE 6 web service packed in a WAR file, and I would like to know if it's possible to use CDI on it. I've seen some examples using the @Stateless annotation, which it's not possible to do in a WAR (as far as I know).

Current implementation:

@WebService
public class MyService{

    @Inject 
    HelloTeller teller:

    @WebMethod
    public String sayHello(){
        teller.sayHello();
    }
}

Note: the other approach would be to create an ejbModule specifically for this web-service.

share|improve this question

1 Answer

up vote 1 down vote accepted

In EE6, you should be able to use a SLSB as JAX-WS endpoint in a war. You can inject EJBs, request scoped and application scoped beans from CDI.

share|improve this answer
I've tried but the injected field is always null. I could make it work in a separate pure-ejb-project, but not whitin a WAR. – Timoteo Ponce Mar 24 '12 at 21:34
Got an arquillian test or simple war/github project? – LightGuard Mar 25 '12 at 2:29
1  
@Timoteo Ponce: do you have a beans.xml file in your WEB-INF directory? Without, CDI does not work. Adding this file people often forget... – kraftan Mar 25 '12 at 15:56
Interesting, this approach fails in JBoss-7.0.1, but the same code runs perfectly in JBoss-7.1.1. – Timoteo Ponce Mar 25 '12 at 16:17
1  
7.0.1 was only web profile certified, 7.1 is full profile. That's your difference. – LightGuard Mar 25 '12 at 20:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.