Re: Tomcat Version problem

2007-07-07 Thread Christopher Schultz
Hanasaki, hanasaki wrote: When you get things working... Please post the solution to the problem so we can all learn. I believe the solution was already posted by Jon Wingfield on 2007-07-05 at 06:09: You are using jdk1.5 features (autoboxing, for example ) in your JSP pages. Early versions

Re: Tomcat Version problem

2007-07-06 Thread Girish Havaldar
Thank you for your suggestion, i am new to this group, next time i'll this in mind GS On 06/07/07, hanasaki [EMAIL PROTECTED] wrote: What do you mean v r? Please do not post shortcut English ;) When you get things working... Please post the solution to the problem so we can all learn.

Tomcat Version problem

2007-07-05 Thread Girish Havaldar
Hi, we have an application developed using the following components as listed below mysql 5.0.27 jdk 1.5.0_06 jre 1.5.0_06 tomcat5.5.20 Apache 2 phpMyAdmin 2.9.2 Servlets 2.3 JSP1.2 Our application is

Re: Tomcat Version problem

2007-07-05 Thread Gregor Schneider
Sorry, my cristal ball just f'd up, therefore I'm neither able to see the errors thrown up nor a possible solution for them. Gregor -- what's puzzlin' you, is the nature of my game gpgp-fp: 79A84FA526807026795E4209D3B3FE028B3170B2 gpgp-key available @ http://pgpkeys.pca.dfn.de:11371

Re: Tomcat Version problem

2007-07-05 Thread Girish Havaldar
On 05/07/07, Girish Havaldar [EMAIL PROTECTED] wrote: Hi, we have an application developed using the following components as listed below mysql 5.0.27 jdk 1.5.0_06 jre 1.5.0_06 tomcat5.5.20 Apache 2 phpMyAdmin 2.9.2

Re: Tomcat Version problem

2007-07-05 Thread Gregor Schneider
well, the error-log is giving you pretty good hints: An error occurred at line: 67 in the jsp file: /classification.jsp Generated servlet error: Type mismatch: cannot convert from Integer to int An error occurred at line: 67 in the jsp file: /classification.jsp Generated servlet error: The

Re: Tomcat Version problem

2007-07-05 Thread Girish Havaldar
Thanks man, On 05/07/07, Gregor Schneider [EMAIL PROTECTED] wrote: well, the error-log is giving you pretty good hints: An error occurred at line: 67 in the jsp file: /classification.jsp Generated servlet error: Type mismatch: cannot convert from Integer to int An error occurred at

Re: Tomcat Version problem

2007-07-05 Thread Peng Tuck Kwok
Sounds like that are a lot of type mis-match in the generated servlets, I'd have a look at the JSP's to see if there's anything like that in there and correct it. On 7/5/07, Gregor Schneider [EMAIL PROTECTED] wrote: well, the error-log is giving you pretty good hints: An error occurred at

Re: Tomcat Version problem

2007-07-05 Thread Girish Havaldar
wht i think is a version problem, how to check versions of servlets,jsp, how 'll come to kn which version v r using On 05/07/07, Peng Tuck Kwok [EMAIL PROTECTED] wrote: I have no idea where your line numbers are but the jsp compiler is already asking you to look at 67, 223, 226 in your JSP.

Re: Tomcat Version problem

2007-07-05 Thread Peng Tuck Kwok
I have no idea where your line numbers are but the jsp compiler is already asking you to look at 67, 223, 226 in your JSP. Possibly you get cast exceptions because whatever you are trying to cast to isn't cast-able or converted. Also please double check the types of the objects you are passing

Re: Tomcat Version problem

2007-07-05 Thread Girish Havaldar
ths is the jsp page: [EMAIL PROTECTED] import=java.sql.*,java.util.*,logcheck.settings errorPage= errorpage.jsp% html head title classification/title/head script type=text/javascript src=dropdown.js/script body bgcolor=#FF LINK rel=stylesheet href=style.css

Re: Tomcat Version problem

2007-07-05 Thread Johnny Kewl
] To: users@tomcat.apache.org Sent: Thursday, July 05, 2007 9:37 AM Subject: Re: Tomcat Version problem On 05/07/07, Girish Havaldar [EMAIL PROTECTED] wrote: Hi, we have an application developed using the following components as listed below mysql 5.0.27 jdk

Re: Tomcat Version problem

2007-07-05 Thread Johnny Kewl
I see one problem.. see note below - Original Message - From: Girish Havaldar [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Thursday, July 05, 2007 10:00 AM Subject: Re: Tomcat Version problem ths is the jsp page: [EMAIL PROTECTED] import=java.sql

Re: Tomcat Version problem

2007-07-05 Thread David Smith
- From: Girish Havaldar [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Thursday, July 05, 2007 10:00 AM Subject: Re: Tomcat Version problem ths is the jsp page: [EMAIL PROTECTED] import=java.sql.*,java.util.*,logcheck.settings errorPage= errorpage.jsp% html

Re: Tomcat Version problem

2007-07-05 Thread Jon Wingfield
You are using jdk1.5 features (autoboxing, for example ) in your JSP pages. Early versions of the 5.5 tree bundled a jsp compiler (JDT) which didn't support these new language features. Later versions bundled an updated version of the compiler... For deploying on 5.5.9 just get rid of your

Re: Tomcat Version problem

2007-07-05 Thread hanasaki
Did you per-complile the JPS's? - don't - in this case Ensure the jsp version you coded against is the same as that supported by the hosting company. Jon Wingfield wrote: You are using jdk1.5 features (autoboxing, for example ) in your JSP pages. Early versions of the 5.5 tree bundled a jsp

Re: Tomcat Version problem

2007-07-05 Thread Girish Havaldar
Thnks for the resplone, now v r doing that only GS. On 06/07/07, hanasaki [EMAIL PROTECTED] wrote: Did you per-complile the JPS's? - don't - in this case Ensure the jsp version you coded against is the same as that supported by the hosting company. Jon Wingfield wrote: You are using jdk1.5

Re: Tomcat Version problem

2007-07-05 Thread hanasaki
What do you mean v r? Please do not post shortcut English ;) When you get things working... Please post the solution to the problem so we can all learn. Girish Havaldar wrote: Thnks for the resplone, now v r doing that only GS. On 06/07/07, hanasaki [EMAIL PROTECTED] wrote: Did you