Re: jasper error compiling jsp

2004-10-27 Thread Sarath PS
thanks for your replay. But i am using linux ! No i got what went wrong. Actually it a Java Error. When we use classes with out package in jsp file, Jasper will create import statement with out class name. If we are using jdk1.4 it will through error since after 1.4 Java is more strict about

RE: jasper error compiling jsp

2004-10-22 Thread Flisch, Alan
October 2004 09:43 To: Tomcat Users List Subject: Re: jasper error compiling jsp hi, Thanks for the replay . But this not an application i develop. I just want to deploy it on my tomcat. It seems the app is developed for some other container. Is there any work around to run it on tomcat

Re: jasper error compiling jsp

2004-10-22 Thread Sarath PS
point. I think getting the application fixed somehow, is your best option. -Original Message- From: Sarath PS [mailto:[EMAIL PROTECTED]] Sent: 22 October 2004 09:43 To: Tomcat Users List Subject: Re: jasper error compiling jsp hi, Thanks for the replay . But this not an application i

RE: jasper error compiling jsp

2004-10-22 Thread Flisch, Alan
forgiving at some point. I think getting the application fixed somehow, is your best option. -Original Message- From: Sarath PS [mailto:[EMAIL PROTECTED]] Sent: 22 October 2004 09:43 To: Tomcat Users List Subject: Re: jasper error compiling jsp hi, Thanks for the replay

Re: jasper error compiling jsp

2004-10-22 Thread Sarath PS
never know what else might be lurking in there. -Original Message- *From:* Sarath PS [mailto:[EMAIL PROTECTED] *Sent:* 22 October 2004 11:06 *To:* Tomcat Users List *Subject:* Re: jasper error compiling jsp Thanks alan, So you say it's not possible to run

RE: jasper error compiling jsp

2004-10-22 Thread Steve Kirk
=31message=2145193 -Original Message- From: Flisch, Alan [mailto:[EMAIL PROTECTED] Sent: Friday 22 October 2004 12:23 To: Tomcat Users List Subject: RE: jasper error compiling jsp I wouldn't think so. The changes necessary to the app are likely to be pretty trivial, although you never know

RE: jasper error compiling jsp

2004-10-22 Thread Steve Kirk
Users List' Subject: RE: jasper error compiling jsp Scroll down to point 8 under Incompatibilities Between Java 2 Platform, Standard Edition, v1.4.0 and v1.3, read the second bullet. This confirms Alan's comments. http://forum.java.sun.com/thread.jsp?thread=466368 http

RE: Jasper Error wrong version of Object.class (48.0 , should be 47.0)

2003-04-03 Thread Robert Priest
and configuring it as a servlet in tomcat. -Original Message- From: Robert Priest Sent: Tuesday, April 01, 2003 5:06 PM To: 'Tomcat Users List' Subject: RE: Jasper Error wrong version of Object.class (48.0 , should be 47.0) Thanks for the reply. I just downloaded 1.4.1_ -Original

RE: Jasper Error wrong version of Object.class (48.0 , should be 47.0)

2003-04-01 Thread Shapira, Yoav
Howdy, Make sure you're using: - The JDK (not JRE) - The right version of the JDK (preferably the latest stable version) - An OS that has the patches required for the JDK, if any This was a known bug in JDK 1.4.0b92 or something like that: search the BugParade on java.sun.com. Yoav Shapira

RE: Jasper Error wrong version of Object.class (48.0 , should be 47.0)

2003-04-01 Thread Robert Priest
, if any Running Windows 2000 Service Pack 3 Is it possible that some other jar could be interfering (reaching)? e -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 3:27 PM To: Tomcat Users List Subject: RE: Jasper Error wrong version

RE: Jasper Error wrong version of Object.class (48.0 , should be 47.0)

2003-04-01 Thread Robert Priest
Thanks for the reply. I just downloaded 1.4.1_ -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 3:27 PM To: Tomcat Users List Subject: RE: Jasper Error wrong version of Object.class (48.0 , should be 47.0) Howdy, Make sure you're using

RE: Jasper Error wrong version of Object.class (48.0 , should be 47.0)

2003-04-01 Thread Ralph Einfeldt
Is it possible that you have a tools.jar in the tomcat classpath that is older than j2sdk1.4.1_01 ? (AFAIK some versions of tomcat where delivered with tools.jar) -Original Message- From: Robert Priest [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 10:22 PM To: [EMAIL

Re: Jasper error

2002-01-22 Thread RSEQUEIRA
Debby Dart [EMAIL PROTECTED] on 01/21/2002 07:08:32 PM Please respond to Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] cc: Subject: Jasper error I'm a newbie to Tomcat and JSP and fairly new to Java. While running a test script with Tomcat 4.0, I get

Re: Jasper error

2002-01-22 Thread dderry
Debby, You need to import org.apache.jsp.UserData to use it in that manner. (%@ page import=org.apache.jsp.UserData %). the useBean declaration creates a scripting variable named user, and does not require the import. But at line 3 (UserData user = null;) you are declaring a different variable

RE: Jasper error

2002-01-22 Thread Justin Rowles
I have looked at most of the documentation I can find and tried to use web.xml - going to this list with such a basic question is a last resort. Firstly well done - a decent effort with the docs is something to be congratulated upon. Class org.apache.jsp.UserData not found. This is the

RE: Jasper error

2002-01-22 Thread Debby Dart
: Jasper error I have looked at most of the documentation I can find and tried to use web.xml - going to this list with such a basic question is a last resort. Firstly well done - a decent effort with the docs is something to be congratulated upon. Class org.apache.jsp.UserData not found

RE: Jasper error

2002-01-22 Thread Randy Layman
12:15 PM To: 'Tomcat Users List' Subject: RE: Jasper error Thanks for all the great response - but I'm still confused about what the WEB-INF\classes directory is for if packages have to be used. Debby -Original Message- From: Justin Rowles [mailto:[EMAIL PROTECTED]] Sent

Re: Jasper error

2002-01-21 Thread Dave Whitla
You have to import the UserData class. %@ page import=java.sql.Timestamp % - Original Message - From: Debby Dart [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Tuesday, January 22, 2002 11:08 AM Subject: Jasper error I'm a newbie to Tomcat and JSP and fairly new

Re: Jasper error

2002-01-21 Thread Dave Whitla
Woops - Original Message - From: Dave Whitla [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, January 22, 2002 11:09 AM Subject: Re: Jasper error You have to import the UserData class. %@ page import=java.sql.Timestamp % Ignore the above

Re: Jasper error

2002-01-21 Thread Dave Whitla
It would seem that the default package within the Jasper compiler is org.apache.jsp. Use a fully qualified class name and this will work. eg com.mycompany.testapp.UserData Your path to the UserData class file below WEB-INF would be /com/mycompany/testapp/UserData.class Class