Can you please supply how your configurations look like.It would be much easier to see where the problem lies,both the dispatcher and map.publish/http/ files.Regards/Johan
I agree with Scott there that it would be the best idea if you cannot use the parentPath property. Though I would strongly recommend that you change the structure of your DAM instead to help you with this.I guess that you have this kind of structure now:dam/images/folder1dam/images/folder2dam/imaged...
Do you get any other errors?This is an example how you can set it up (note that this is just a simple test for a function but works the same way for tags):1) In the tld file:<?xml version="1.0" encoding="ISO-8859-1" ?> <taglib xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/200...
I have included mine like this in the jsp:<%@ taglib prefix="mytaglib" uri="http://taglib.my.test.com/taglibs/mytaglib/1.0"%>and in my .tld file I have the following://code... <uri>http://taglib.my.test.com/taglibs/mytaglib/1.0</uri>//code...So they both needs to match for the jsp file to know wh...
I've done just like you wrote above, META-INF/mytld.tld=target/classes/META-INF/mytld.tld Could there be a problem with the copying of files (during the package phase) with the maven-resources-plugin ?
Okey. Seems to be a problem with the version numbers there.The extra -${project.version} is somehow not recognised. Can you first try to verify that it works without that like:myTags.tld=target/classes/META-INF/myTags.tldIn your tld file. Have you set the right version number (the same) there aswell...
I've got the same setup as you have written and put the file in the same location,but I have the following line just underneat <import-package></import-package>:<Embed-Dependency>*;scope=compile|runtime</Embed-Dependency> Maybe you could try and see if that solves your problem ?Do you get any build ...