Hello I am a php guy moving into the world of jsp.
I am getting an error on my page that I do not understand. I am trying to do my first jsp page, a hello world sort of test page.
here is the content of my page
<%@ page contentType="text/html" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<html>
<head>
<title>JSP is Easy</title>
</head>
<body bgcolor="white">
<h1>JSP is as easy as ...</h1>
<%-- Calculate the sum of 1 + 2 + 3 dynamically --%>
1 + 2 + 3 = <c:out value="${1 + 2 + 3}" />
</body>
</html>
I get a 500 error
Here is the page.
http://207.36.52.171/easy.jsp
I am running fedora, ensim -- stuff that is supposed to make the server side of things easy.
Tomcat seems to be installed and configured properly...
Could someone help me, I don't know what is wrong.
Thanks,
-Darren