On 11/14/06, David Delbecq <[EMAIL PROTECTED]> wrote:
Ok, you must replace you web.xml with a 2.4 compliant web.xml, i think
in 2.3 specs tomcat does not load the tlds from jars by default.

To do this, replace this section at begin of web.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web
Application 2.3//EN' 'http://java.sun.com/dtd/web-app_2_3.dtd'>

<web-app>

with this section
<?xml version="1.0" encoding="UTF-8"?>
<web-app
    xmlns="http://java.sun.com/xml/ns/j2ee";
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd";
    version="2.4">

I still have the problem even after making the changes you suggested
above! I think the problem is because I have deployed the mostgain app
as follows:

/usr/local/apache-tomcat/webapps/mano-projects/mostgain

Now the include directive in index.jsp looks like this:
<%@ include file="/WEB-INF/jsp/include.jsp" %>

Maybe I have to tell tomcat about this extra dir (mano-project) i have created!

Thanks,
mano

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to