Forget META-INF (sorry Craig). I "think" I finally figured it out.

Let's go back to old release (1.1b2). In my web.xml, I define

<taglib>
        <taglib-uri>mytiles</taglib-uri>
        <taglib-location>/WEB-INF/struts-tiles.tld</taglib-location>
</taglib>

taglib-uri is just a reference that you will use in your jsp. Treat it as a
variable name.

<%@ taglib uri='mytiles' prefix='tiles' %>
<tiles:insert ...../>

location is where your file is located, relative path, don't if absolute
path works.

Regards,
 
 
PQ
 
"This Guy Thinks He Knows Everything"
"This Guy Thinks He Knows What He Is Doing"

-----Original Message-----
From: Daniel Grey [mailto:[EMAIL PROTECTED]] 
Sent: January 3, 2003 1:02 PM
To: Struts Users Mailing List
Subject: RE: (http://jakarta.apache.org/struts/tags-tiles-1.1) cannot be
resolved 

Yes I did - still get the same results. I've tried more variations on
that than I can remember.
Thanks

-----Original Message-----
From: Siggelkow, Bill [mailto:[EMAIL PROTECTED]]
Sent: Friday, January 03, 2003 6:33 AM
To: 'Struts Users Mailing List'
Subject: RE: (http://jakarta.apache.org/struts/tags-tiles-1.1) cannot be
resolved 


Did you try taking the version off the URI?  In other words, use:
"http://jakarta.apache.org/struts/tags-tiles";

-----Original Message-----
From: Daniel Grey [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 02, 2003 5:21 PM
To: [EMAIL PROTECTED]
Subject: (http://jakarta.apache.org/struts/tags-tiles-1.1) cannot be
resolved 


I am trying to deploy a .ear file to JBOSS and canNot get around this
error:

org.apache.jasper.JasperException: null(-1,-1) This absolute uri
(http://jakarta.apache.org/struts/tags-tiles-1.1) cannot be resolved in
either web.xml or the jar files deployed with this application

There are a bunch of .jsp files that contain this reference:
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles-1.1";
prefix="tiles" %>

The web.xml has this reference:
 <taglib>
 
<taglib-uri>http://jakarta.apache.org/struts/tags-tiles-1.1</taglib-uri>
    <taglib-location>/WEB-INF/struts-tiles.tld</taglib-location>
  </taglib>

The lib directory has struts.jar and the classes directory has the
classes
Does anyone have a clue on this?
HELP!
Thanks

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

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


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

Reply via email to