On 12/5/05, fea jabi <[EMAIL PROTECTED]> wrote:
> I am using Servlet engine 2.4. What will be the different advice?
>
> My web.xml looks something like this
> <!DOCTYPE web-app
>   PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
>   "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd";>

Does your app need to work in a Servlet 2.2 container?  My Servlet 2.4
web.xml looks like this:

<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">

> In the forums I am seeing that it should be different one for JSTL 1.1 to
> work.

For JSTL 1.1 you need (for lack of a better explanation) the URIs with
'jsp' in them, such as:
   <%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %>

Take a look at the Getting Started page for more information:
   
http://jakarta.apache.org/taglibs/doc/standard-doc/standard/GettingStarted.html

--
Wendy

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to