• 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

How to set a user application as default application in TOMCAT

 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I have deployed my application in Tomcat webapps and have also configured IIS 5.0 with Tomcat 4.1. When i give the URL of the application, it sends the request to IIS which in turn redirects the request to Tomcat.

However, when the URL is given , the index.jsp page of TOMCAT is picked up and not the welcome page that has been specified in the web.xml of the application.

Please let me know what settings should be given in the server.xml of TOMCAT so as to set my application as default and when the URL of the application is given, the welcome page specified in web.xml of the application is picked..

Thanks
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Where have you placed your application files?

Tomcat usually considers the application under web-apps/ROOT to be the default application.

Bill
 
reply
    Bookmark Topic Watch Topic
  • New Topic