Hi
I import an external page to one of my webpage using jstl <%c:import%>
It works with windows,But when i run the page in Linux it shows
"org.apache.jasper.JasperException: javax.servlet.jsp.JspException: Problem accessing the absolute URL "+urlname
versions
Red Hat Enterprise Linux WS release 3 (Taroon)
Java 1.5
Apache
Tomcat 5.5.26
Process I did
Copy standard.jar and jstl.jar to WEB-INF/lib dir
create tlds dir and copy c.tld
web.xml
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<taglib>
<taglib-uri>
http://java.sun.com/jsp/jstl/core</taglib-uri>
<taglib-location>/WEB-INF/tlds/c.tld</taglib-location>
</taglib>
The webpage includes
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
...
<c:import url="<%=urlpage%>" />
urlpage is dynamic
Can anyone help me to clear the issue.
Thanks
Dinesh