Hmmmm, it all looks good. I'm not using Iplanet, but I had a similar problem
when I moved from Tomcat to Oracle9I server. I'm quite sure the problem is
in the web.xml. Do this create a simple jsp and test which include works;
direct path or mapping.

Test1:
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<bean:message key="test.message" />

Test2:
<%@ taglib uri="/tags/struts-bean" prefix="bean" %>

<bean:message key="test.message" />

Suzette

-----Original Message-----
From: Philippe Van Der Gucht [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 23, 2003 9:02 AM
To: Struts Users Mailing List
Subject: Re: IPlanet 6 SP2 and Struts 1.1 with templates TLD


Suzette Daniel wrote:

> Your declaration that you listed below seems correct I don't think 
> that the

I forgot to mention that development went on on a Tomcat server with no 
problems whatsoever.

> problem. What does your "jsp/siteTemplate.jsp" look like?

<%@ page language="java" contentType="text/html;charset=iso-8859-1" %> <%@
taglib uri="/tags/struts-template" prefix="template" %> <%@ taglib
uri="/tags/struts-bean" prefix="bean" %> <%@ taglib uri="/tags/struts-html"
prefix="html" %>

<html:html locale="true">
<head>
<title>Template</title>
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<meta http-equiv="expires" content="0"/>

<script language="JavaScript">
<!--
//  Based on script by the amazing [EMAIL PROTECTED]

function MM_goToURL() { //v3.0
   var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
   for (i=0; i<(args.length-1); i+=2)
eval(args[i]+".location='"+args[i+1]+"'");
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
   window.open(theURL,winName,features);
}
//-->
</script>


<link rel="stylesheet" href="<html:rewrite page="/css/style.css"/>" 
type="text/css">
</head>

<body bgcolor="#D4D0C8" text="#000000" Onload="window.focus()">
   <table width="500" border="0" cellspacing="0" cellpadding="0"
align="center" 
class="BodyEmboss">
     <tr>
       <td class="BodyBevel" width="668">
         <table width="100" border="0" cellspacing="0" cellpadding="0">
             <template:get name='menu'/>
         </table>
       </td>
       <td class="BodyBevel" width="20"><html:img page="/images/logo.gif" 
width="20" height="20"/></td>
     </tr>
     <template:get name='content'/>
   </table>
</body>
</html:html>


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

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

Reply via email to