Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

500 ConditionalTagSupport Error

Status
Not open for further replies.

jdbolt

Programmer
Aug 10, 2005
89
CA
I am using JRUN and I get teh following error once I try to use for loops or if statemnts:

500 javax/servlet/jsp/jstl/core/ConditionalTagSupport

Thats all I get, nothing else, so much for helpful error messages. Anyway, the code is well formed so its not that, any ideas?

Thanks!
 
What are you trying to do? Some code snippet? Only using raw jsps?

Cheers,
Dian
 
It doesnt even work when I try to do a code snippet, however I am really trying to set up an existing web app on my computer to perform some maintainance on it.

Funny thing is, it doesnt forward the user to the error page when this occurs.
 
I think Dian meant can you post on this forum the code that is erroring.

--------------------------------------------------
Free Java/J2EE Database Connection Pooling Software
 
Code:
<c:choose>
<c:when test="${empty param.type}">
could not find variable
</c:when>
<c:otherwise>
found variable
</c:otherwise>
</c:choose>

Code:
<%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="error.jsp" %>

<%@ taglib prefix="c" uri="[URL unfurl="true"]http://java.sun.com/jstl/core"[/URL] %>
<%@ taglib prefix="sql" uri="[URL unfurl="true"]http://java.sun.com/jstl/sql"[/URL] %>
<%@ taglib prefix="fmt" uri="[URL unfurl="true"]http://java.sun.com/jstl/fmt"[/URL] %>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top