• 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

FAIL - Application at context path /ch1 could not be started

 
Ranch Hand
Posts: 72
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I tried to change the status from false to true, but it shows FAIL - Application at context path /ch1 could not be started
As adviced by others i opened log files and saw stdout file nothing is given in that file. It is empty. Please help me to solve this issue.
 
Saloon Keeper
Posts: 27807
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"stdout" is an unpredictable resource in j2ee, which is one of the reasons why we discourage using System.out/err.print statements. Usually - but not always - it gets output to a file named "catalina.out". However, if you don't find an error in catalina.out, look in the localhost logfile. Some really severe errors show up there, instead.
 
sahana mithra
Ranch Hand
Posts: 72
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hay thanks Tim!!! Got the solution. The problem was with web.xml where i forgot to put "" to the line before the version string.
reply
    Bookmark Topic Watch Topic
  • New Topic