• 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

configiring tomcat 4.03 to run my static web page on startup

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,
I have tomcat 4.03 on my system and created static web pages with links and have created a database tables that i need to link trough tomcat to my web pages.
1. how do i make tomcat startup where my webpage insted of defult page of tomcat that is in localhost:8080 tomcat/wabapps/ROOT/index.html as defult?
2. where do i put my access database tables into and how do i link it?
need help ASAP.
 
Ranch Hand
Posts: 18944
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I believe that you can change your start page by adding a <welcome-file> element in web.xml. That file is found in $CATALINA_HOME$/conf.
As far as the Access stuff is concerned, you can connect to an access database using the JDBC-ODBC bridge driver. In doing that, you can put the database anywhere on the system that you like. You will have to create a system DSN for it, and JDBC will connect using your ODBC DSN.
[ April 18, 2002: Message edited by: Bodie Minster ]
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic