hi all,
I have some jsp pages that using with FCKeditor.
and the jsp pages work well in my local pc. I am using tomcat 5.5.4 and java 1.4.2.
but when I put them into the host. there is an error
"This absolute uri (http://fckeditor.net/tags-fckeditor) cannot be resolved in either web.xml or the jar files deployed with this application"
the host is using tomcat 4 and java 1.3
I just copyed my local web.xml and uploaded to the host server, I think the web.xml may not run correctly, or may be other problem caused it. Does anyone has this experience?
Thu, 10/27/2005 - 14:26
#1
RE: JSP with FCKeditor
It looks like you are missing a proper taglib definition in your web.xml file. If, for example, you put FCKeditor.tld in WEB-INF, then you would put this at the end of your web.xml file:
<taglib>
<taglib-uri>http://fckeditor.net/tags-fckeditor</taglib-uri>
<taglib-location>/WEB-INF/FCKeditor.tld</taglib-location>
</taglib>
Good luck!
RE: JSP with FCKeditor
RE: JSP with FCKeditor