4 Replies Latest reply on Jan 8, 2010 3:41 AM by marco.scagliola

    WARNING [config] unable to process deployment descriptor for context /xxx

      Hello everybody, I've developed and compile a simple 'Hello World' Servlet application, and it compiles fine.

      The directory is structued as following :

       

             HelloWorldDir

                     |

             Helloapp.war

                     |

             WEB-INF

                     |

                classes

                |         |

         web.xml   com

                          |

                     manning

                         |

                       jdbia

                         |

                       intro

                         |

             HelloWorldServlet.Class

                                                                                      

      -------------------------------------------------                                                                       

      My web.xml content is :    

      <servlet>

           <servlet-name>Helloapp</servlet-name>

           <servlet-class>com.manning.jdbia.intro.HelloWorldServlet</servlet-class>

      </servlet>

      <servlet-mapping>

           <servlet-name>Helloapp</servlet-name>

           <url-pattern>/Helloapp</url-pattern>

      </servlet-mapping>

      ------------------------------------------------

      On deplyoing the application in Jboss 5.1.0 GA (on linux OS) I recive a warning :

      WARNING [config] unable to process deployment descriptor for context '/Helloapp'

       

      What I'm doing wrong ??

       

      Thank's in advance for any help

       

      Marco