Thanks. I thought it was something to do with Tomcat. I am compiling the
file using NetBeans. It is progressing.
thanks,
suba suresh.
Christopher Schultz wrote:
Suba,
If this is the wrong group to post this question let me know. I am new
to jsp.
This probably /is/ the wrong place to post
Suba,
> If this is the wrong group to post this question let me know. I am new
> to jsp.
This probably /is/ the wrong place to post a question about JSP,
although most of the readers of this group are well-versed.
> org.apache.jasper.JasperException: Unable to compile class for JSP
>
> An error
> From: Glen Mazza [mailto:[EMAIL PROTECTED]
> Subject: Re: JSP compilation error in Tomcat 5.5 using type Vector
>
> For the Vector object you're using, it is possible
> that the JDT compiler is not 1.5-compliant
The methods of interest (Vector.add() and Vector.iterator
way and let you know
Thanks for this idea
Thibaut
Caldarale, Charles R a écrit :
From: Thibaut Nicolas [mailto:[EMAIL PROTECTED] Subject:
Re: JSP compilation error in Tomcat 5.5 using type Vector
Here is the very simple JSP that have written to isolate the error
This probably won't help mu
hat way and let you know
Thanks for this idea
Thibaut
Caldarale, Charles R a écrit :
From: Thibaut Nicolas [mailto:[EMAIL PROTECTED]
Subject: Re: JSP compilation error in Tomcat 5.5 using type Vector
Here is the very simple JSP that have written to isolate the error
This probably won
Thibaut Nicolas wrote:
org.apache.jasper.JasperException: Unable to compile class for JSP
An error occurred at line: 4 in the jsp file: /jsp/Test.jsp Generated
servlet error:
The method add(String) is undefined for the type Vector
An error occurred at line: 4 in the jsp file: /jsp/Test.jsp G
> From: Thibaut Nicolas [mailto:[EMAIL PROTECTED]
> Subject: Re: JSP compilation error in Tomcat 5.5 using type Vector
>
> Here is the very simple JSP that have written to isolate the error
This probably won't help much: your sample JSP works fine for me on
nearly stock versi
Of course,
Here is the very simple JSP that have written to isolate the error
<%@ page language="java" %>
<%@ page import="java.util.Vector" %>
<%@ page import="java.util.Iterator" %>
<%
Vector v = new Vector();
v.add("Hello");
v.add("World");
%>
<%
Iterator it = v.iterator();
while (it.hasNext
Can we have the code that causes this error?
>-Original Message-
>From: Thibaut Nicolas [mailto:[EMAIL PROTECTED]
>Sent: 20 February 2006 16:33
>To: users@tomcat.apache.org
>Subject: JSP compilation error in Tomcat 5.5 using type Vector
>
>Hi all,
>
>I have a problem while trying to migr