This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes IDEs, Version Control and other tools and the fly likes Problem with JSTL in RAD7.5 Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Engineering » IDEs, Version Control and other tools
Reply Bookmark "Problem with JSTL in RAD7.5" Watch "Problem with JSTL in RAD7.5" New topic
Author

Problem with JSTL in RAD7.5

Junaid Kirkire
Greenhorn

Joined: Mar 26, 2009
Posts: 7
I am using IBM RAD7.5 and WebSphere application server 7.0. I have been to the Project Facets options and activated JavaServer Faces 1.1 and JSTL 1.1.

I am trying to use the code given in HeadFirst Servlets and JSPs.

My code is as follows-->

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>

<%@ taglib prefix="mine" uri="DiceFunctions"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<f:view>
${ mine:rollIt()_ }
</f:view>
</body>
</html>

Only the text colored in red shows error. Rest is fine. The first error is that 'cannot find taglib descriptor' and the second is 'EL syntax error'.

Please tell me how to solve this problem.

Also, is there a standard way of making TLDs in Eclipse or RAD? I have made it manually by saving an XML file as .tld

Please help. Thanks!
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Problem with JSTL in RAD7.5
 
Similar Threads
Casting Exception
Problem in my JSTL comment
jstl in eclipse
default.jsp
IllegalStateException: Cannot forward. Response already committed.