Hi, i am using JSTL 1.1 standard taglib. i am using eclipse
IDE. I read the faq part
http://faq.javaranch.com/java/JstlTagLibDefinitionsand i downloaded the two jar files standard.jar and jstl.jar from the
http://jakarta.apache.org/site/downloads/downloads_taglibs-standard.cgi. Then i put those files in the WEB-INF folder. Right now i am facing the following problem.
in the controller
servlet i added some attribue (request scope) named music_array and tip.
I can able to iterate through that collection by using the "<c:>" prefix (line 14 and 23). But i can't able to use the <fn:> standard actions. i am getting a following error. I can use the other prefixes core, xml, sql, and fmt. But i cant use the fn prefix. what is the problem caussing this error?
What is the logical reason behind this problem. Please clear me.
org.apache.jasper.JasperException: /result.jsp(24,2)
The function convEntity cannot be located with the specified prefix org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:40)
org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)
org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:148)
org.apache.jasper.compiler.Validator$1FVVisitor.visit(Validator.java:1254)
org.apache.jasper.compiler.ELNode$Function.accept(ELNode.java:123)
org.apache.jasper.compiler.ELNode$Nodes.visit(ELNode.java:194)
org.apache.jasper.compiler.ELNode$Visitor.visit(ELNode.java:235)
org.apache.jasper.compiler.ELNode$Root.accept(ELNode.java:54)
org.apache.jasper.compiler.ELNode$Nodes.visit(ELNode.java:194)
org.apache.jasper.compiler.Validator$ValidateVisitor.validateFunctions(Validator.java:1263)
org.apache.jasper.compiler.Validator$ValidateVisitor.visit(Validator.java:603)
org.apache.jasper.compiler.Node$ELExpression.accept(Node.java:897)
org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2166)
org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2216)
org.apache.jasper.compiler.Node$Visitor.visit(Node.java:2222)
org.apache.jasper.compiler.Node$Root.accept(Node.java:457)
org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2166)
org.apache.jasper.compiler.Validator.validate(Validator.java:1484)
org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:167)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:296)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:277)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:265)
org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:564)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:302)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
request_forwarder.doPost(request_forwarder.java:79)
javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
Please clear my issue. Thanks in advance..!

Please ask if you need any futher information.