• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

after migrate from 4.0.1 to 4.2.0, cannot load web.xml in .war/WEB-INF

 
Ranch Hand
Posts: 308
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
in .war/WEB-INF/web.xml, there is a segment


this means TDESStartupServlet should load when the application start.
I add some debugging code in TDESStartupServlet.init() method


then I found when I start the old JBOSS 4.0.3 server, the debugging statement will shown in server.log, then means TDESStartupServlet really loaded.
But when I start the new JBOSS 4.2.0 server, no this debugging statement can be found, so TDESStartupServlet has not loaded, and I think the web.xml is not loaded or seen by the server.

For more information, the web.xml in new server is located in
E:\jboss-eap-4.2.0.GA_CP09\jboss-eap-4.2\jboss-as\server\default\deploy\td-es-internal.war\WEB-INF\web.xml

here is segment of server.log in old JBOSS 4.0.3. server, hope it is useful


and here is the segment of server.log in new JBOSS 4.2.0 server


Any reason will cause this happen?
 
peter tong
Ranch Hand
Posts: 308
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
oh, I comment the following line in web.xml and the TDESStartupServlet can load now!!


anyway, why after comment these two line, the web.xml can be loaded?

the origin web.xml is attached.

 
reply
    Bookmark Topic Watch Topic
  • New Topic