Im trying to use the invoker to call servlets that i just drop in the classes directory under a web app. i can call my servlet in the default web app, but not in mine. i think maybe the web.xml file is not right or possibly my context isnt defined correctly under the server.xml file ideas /suggestions ?
"The Rebel army is now the legitimate property of the Army of the Potomac." - Joseph Hooker spoke these pompous words shortly before he was soundly defeated by Robert E. Lee at Chancellorsville
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 11863
posted
0
The invoker is off by default in Tomcat 4 - look at the ../conf/web.xml file - it has lots of comments. The examples web.xml has the invoker on. Using the invoker leads to innumerable troubles later - bite the bullet and configure your servlets in web.xml. (Also - always put servlets in a package - you will be glad you did.) Bill