I get the following error message:
Severity Description Resource In Folder Location Creation Time
1 IWAE0010E Run-time exception java.lang.Error occurred during validation. The validator being run was JSP Validator and the message thrown was Unresolved compilation problem:
Syntax error on token “public”, interface expected after this token
. KinetDxWeb September 22, 2004 4:03:29 PM
I’m running on Windows 2000 server with what looks like 3.8.1 (not sure how to tell). I’m getting no indication where the error is. This is a small site (just started) with 2 JSP pages and 3 java beans. I could package the whole thing if that would help.
Here’s a portion of one of the JSP files
<%@ page language="java" import="java.util.*" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
— mike