• 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

UPLOAD WAR File to Tomcat 5.5

 
Ranch Hand
Posts: 60
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello All
I have used CodeChare report builder to create one simple report. I have configured CodeCharge tools to produce the JSP file into C:\Tomcat 5.5\webapps\Reports directory.

CodeCharge has successfully compiled and created TESTRASH.war under :\Tomcat 5.5\webapps\Reports directory.

when i am trying to call http://localhost:8080/Reports, it say page cannot be displayed..

I believe the .war file contains everything which what i did in CodeCharge but i am not able or i do know how to install war file in Tomcat5.5.

Can somebody please help me to resolve this..

thanks in advance..

regards,
Rashmi Trivedi
 
Hooplehead
Posts: 136
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
1) ensure you have your tomcat configured to auto deploy war files (which is the default in ./conf/server.xml, i believe)
2) the war file need to be placed in the ./webapps folder (not a child folder as you have done), and it will create the 'reports' folder for you. The folder name is based on the war file name.

Stu
reply
    Bookmark Topic Watch Topic
  • New Topic