[jboss-user] [EJB/JBoss] - Re: Can someone look at this application? help understanding

jaikiran do-not-reply at jboss.com
Thu Oct 2 02:04:10 EDT 2008


Wait, i just noticed this in your web.xml:

  | <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
  |          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  |          xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
  |          http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
  |          version="2.4">
  | 

I just read that the annotation processing will not happen for this version of web-app xsd. Change it to:

<web-app version="2.5" 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_2_5.xsd">

and see if it works.


View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4179931#4179931

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4179931



More information about the jboss-user mailing list