I've got the same message for NT / Linux - standard installation at both systems - by trying to start this jsp:
<html>
<head>
<title>title</title>
</head>
<body>
<%@ page language="java" %>
<%@ page import="Berech" %>
<% Berech berech = new Berech();
berech.start();
%>
bla, bla bla
</body>
</html>
MESSAGE:
.../index_jsp.java:7: '.' expected
import Berech;
^
.../index_jsp.java:51: cannot resolve symbol
symbol : class Berech
location: class org.apache.jsp.index_jsp
Berech berech = new Berech();
^
What's going wrong in my index.jsp
TOMCAT 4.1.18 / JDK 1.4.1_01
classpath & environment is set and checked
with TOMCAT 3.x it runs.
best regards ok
<html>
<head>
<title>title</title>
</head>
<body>
<%@ page language="java" %>
<%@ page import="Berech" %>
<% Berech berech = new Berech();
berech.start();
%>
bla, bla bla
</body>
</html>
MESSAGE:
.../index_jsp.java:7: '.' expected
import Berech;
^
.../index_jsp.java:51: cannot resolve symbol
symbol : class Berech
location: class org.apache.jsp.index_jsp
Berech berech = new Berech();
^
What's going wrong in my index.jsp
TOMCAT 4.1.18 / JDK 1.4.1_01
classpath & environment is set and checked
with TOMCAT 3.x it runs.
best regards ok