JBoss Community

Re: @EJB Injection

created by Gustavo Walker in JBoss Web Services - View the full discussion

Hi,

 

I had the same problem, but I found problem and now work's fine.

My problem was in the web.xml and sun-web.xml, these files were configured to run on java 5 and java 6 does not.

 

Code wrong web.xml (Note version 2.5)

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns="http://java.sun.com/xml/ns/javaee" 
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" 
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">

 

Code correct web.xml (Note version 3.0)

<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">

 

Code wrong sun-web.xml (Note again version 2.5)

<!DOCTYPE sun-web-app PUBLIC -//Sun Microsystems, Inc.//DTD Application Server 9.0 Servlet 2.5//EN 
http://www.sun.com/software/appserver/dtds/sun-web-app_2_5-0.dtd>

 

Code correct sun-web.xml

<!DOCTYPE sun-web-app PUBLIC -//Sun Microsystems, Inc.//DTD Application Server 9.0 Servlet 3.0//EN 
http://www.sun.com/software/appserver/dtds/sun-web-app_3_0-0.dtd>

 

Eclipse with jboss 5 generate this files to servlet's 2.5 on deploy the server don't process @EJB annotation.

To use @EJB annotation your server compatibilit with servlet 3.0. On jboss 6 it's work's fine (I don't run in jboss 5).

 

 

Sorry my english.

Reply to this message by going to Community

Start a new discussion in JBoss Web Services at Community