Re: EL Expressions allowed with Tomcat 5.0.19

2007-08-07 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dimitrius, Dimitris Mouchritsas wrote: > Christopher Schultz wrote: >> You are adding the result of the ternary operator. The second >> parameter to the ternary operator is a double value (0.0). The >> third one is a String. > > Well shouldn't the res

Re: EL Expressions allowed with Tomcat 5.0.19

2007-08-07 Thread Dimitris Mouchritsas
Christopher Schultz wrote: > Dimitris, > > Dimitris Mouchritsas wrote: > > > > ${ table_data.package_price + > > ( road_assistance_2year == '-' ? 0.0 : road_assistance_2year ) + > > ( comp_offer_data.hasInsurance ? table_data.insuranceValue : 0.0 ) } > > > > > and in Tomcat 6.0.13 it works

Re: EL Expressions allowed with Tomcat 5.0.19

2007-08-07 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dimitris, Dimitris Mouchritsas wrote: > > ${ table_data.package_price + > ( road_assistance_2year == '-' ? 0.0 : road_assistance_2year ) + > ( comp_offer_data.hasInsurance ? table_data.insuranceValue : 0.0 ) } > > > and in Tomcat 6.0.13 it wo

EL Expressions allowed with Tomcat 5.0.19

2007-08-07 Thread Dimitris Mouchritsas
Hi everyone. I'm testing this code: ${ table_data.package_price + ( road_assistance_2year == '-' ? 0.0 : road_assistance_2year ) + ( comp_offer_data.hasInsurance ? table_data.insuranceValue : 0.0 ) } and in Tomcat 6.0.13 it works fine. However in Tomcat 5.0.19 the page stops proccessing a