Re: [OT] EL expressions

2008-12-17 Thread Ron Day
" To: "Struts" Date: Wed, 17 Dec 2008 14:59:26 +0100 Subject: [OT] EL expressions I don't understand why my EL expressions aren't being evaluated. They are printed just like they in the source code ("${param}"). I did put this in my JSP code Working with server:

Re: [OT] EL expressions

2008-12-17 Thread Lorenzo Carnevale
What servlet version is specified in web.xml? Gotcha! You won my gratitude. The problem was that I started a new web application from scratch on my IDE, the J2EE version I chose was 1.5, a version that - I discovered it later - Tomcat 5.5 doesn't support. I changed everything back to version

RE: [OT] EL expressions

2008-12-17 Thread Biesbrock, Kevin
Subject: [OT] EL expressions I don't understand why my EL expressions aren't being evaluated. They are printed just like they in the source code ("${param}"). I did put this in my JSP code Working with server: <%= application.getServerInfo() %> Servlet Specification: <%

Re: [OT] EL expressions

2008-12-17 Thread Antonio
2008/12/17 Lorenzo Carnevale : > I don't understand why my EL expressions aren't being evaluated. > They are printed just like they in the source code ("${param}"). What servlet version is specified in web.xml? Antonio - To unsu

[OT] EL expressions

2008-12-17 Thread Lorenzo Carnevale
I don't understand why my EL expressions aren't being evaluated. They are printed just like they in the source code ("${param}"). I did put this in my JSP code Working with server: <%= application.getServerInfo() %> Servlet Specification: <%= application.getMajorVersion() %>.<%= application.getM

Re: [OT] EL expressions and string concatenation

2007-11-07 Thread Adam Hardy
Antonio Petrelli on 05/11/07 08:14, wrote: 2007/11/4, Adam Hardy <[EMAIL PROTECTED]>: Antonio Petrelli on 04/11/07 16:17, wrote: 2007/11/4, Adam Hardy <[EMAIL PROTECTED]>: I want to concatenate 2 vars into a string in EL but since one is a Long, EL can't do it, and throws a NumberFormatExcep

Re: [OT] EL expressions and string concatenation

2007-11-05 Thread Antonio Petrelli
2007/11/4, Adam Hardy <[EMAIL PROTECTED]>: > > Antonio Petrelli on 04/11/07 16:17, wrote: > > 2007/11/4, Adam Hardy <[EMAIL PROTECTED]>: > >> I want to concatenate 2 vars into a string in EL but since one is a > Long, EL > >> can't do it, and throws a NumberFormatException because it wants them > b

Re: [OT] EL expressions and string concatenation

2007-11-04 Thread Adam Hardy
Antonio Petrelli on 04/11/07 16:17, wrote: 2007/11/4, Adam Hardy <[EMAIL PROTECTED]>: I want to concatenate 2 vars into a string in EL but since one is a Long, EL can't do it, and throws a NumberFormatException because it wants them both to be Longs so it can do arithmetic addition instead. Yo