You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by Maya Muchnik <mm...@pumatech.com> on 2001/03/01 22:45:51 UTC

Re: JSP includes of

Try to change <jsp:include page="include/header.jsp"/> to put a full path to
header.jsp file. For example:
<jsp:include page="/WEB-INF/include/header.jsp"/>. But I am not sure.

Katarina Nelson wrote:

> Try to include the needed .tld files into the "include/header.jsp" page.
> It worked for me.
>
> /Katarina
>
> -----Original Message-----
> From: Hardee, Tony [mailto:Tony.Hardee@ps.net]
> Sent: den 1 mars 2001 22:29
> To: 'struts-user@jakarta.apache.org'
> Subject: JSP includes of
>
> I am having trouble using includes and custom tags in JSPs with Struts.
>
> The application is unable to find the tag descriptor files. For example, I
> have an include file that contains:
>
> // header.jsp
> <%@ page language="java" %>
> <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
> <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
> <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
>
> and call it in the JSP:
> <jsp:include page="include/header.jsp"/>
>
> The .tld files can not be resolved. The include directory is one level under
> the JSP and I have tried different paths to the .tld files with no success.
> How can I get this to work if at all?
>
> Solutions are appreciated.