Tomcat 5.0.19 and EL expressions allowed

2007-08-16 Thread Dimitris Mouchritsas
Hi everyone. I'm testing this code: fmt:formatNumber type = currency groupingUsed = true ${ table_data.package_price + ( road_assistance_2year == '-' ? 0.0 : road_assistance_2year ) + ( comp_offer_data.hasInsurance ? table_data.insuranceValue : 0.0 ) } /fmt:formatNumber and in Tomcat

EL Expressions allowed with Tomcat 5.0.19

2007-08-07 Thread Dimitris Mouchritsas
Hi everyone. I'm testing this code: fmt:formatNumber type = currency groupingUsed = true ${ table_data.package_price + ( road_assistance_2year == '-' ? 0.0 : road_assistance_2year ) + ( comp_offer_data.hasInsurance ? table_data.insuranceValue : 0.0 ) } /fmt:formatNumber and in Tomcat

Re: EL Expressions allowed with Tomcat 5.0.19

2007-08-07 Thread Dimitris Mouchritsas
Christopher Schultz wrote: Dimitris, Dimitris Mouchritsas wrote: fmt:formatNumber type = currency groupingUsed = true ${ table_data.package_price + ( road_assistance_2year == '-' ? 0.0 : road_assistance_2year ) + ( comp_offer_data.hasInsurance ? table_data.insuranceValue : 0.0

Re: Tomcat cannot access the resources in an HTTPS webapp

2007-07-16 Thread Dimitris Mouchritsas
Mark Thomas wrote: Dimitris Mouchritsas wrote: login-config auth-methodHTTPS/auth-method realm-nameORA Examples/realm-name /login-config There is no such authentication method defined in the spec. If you want client certificate authentication then the correct value

Re: Tomcat cannot access the resources in an HTTPS webapp

2007-07-16 Thread Dimitris Mouchritsas
/role-name /auth-constraint !-- end add -- /security-constraint but tomcat, while asking me to log in, and I did, denied access to the resource. Without the addition I get the https encryption that I require. Caldarale, Charles R wrote: From: Dimitris Mouchritsas [mailto:[EMAIL PROTECTED

Tomcat cannot access the resources in an HTTPS webapp

2007-07-13 Thread Dimitris Mouchritsas
Hi, I'm running Tomcat 6.0.13 in Windows XP SP2. I've configured Tomcat to use SSL through the documentation instructions and it works, since I can access the ROOT webapp from https. The problem is a book example I'm trying. I've set up web.xml like this: security-constraint