value not resolved in html:text tag at weblogic

I've a jsp working fine at tomcat, but after i migrate it to weblogic, some of the html:text tags are not working properly.

eg. <html:text property="dispParamValue" styleClass="formFill1line" value="${sysvarList[rowCount].dispParamValue}" />

Instead of display the value of ${sysvarList[rowCount].dispParamValue} like "abc", it displays the tag itself "${sysvarList[rowCount].dispParamValue}" at the text field at weblogic.

Anyone has encountered the same problem before? any difference in the server settings that i need to take note of?

[570 byte] By [Inukaa] at [2007-11-27 9:00:36]
# 1
hi,r u using any specific IDE for developmentbala
art84a at 2007-7-12 21:29:25 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
Check your Weblogic documentation for surported JSP version. Expression language is only supported with JSP 1.2 (?) and later. I had the same problem and I had to upgrade to j2ee 1.4 to resolve it.
PatrickWanga at 2007-7-12 21:29:25 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3

[nobr]Just to clarify, the EL is supported by a J2EE 1.4 server which corresponds to Servlet2.4 / JSP2.0

What version of Weblogic are you using?

You can find out the version of the spec your server supports with the following JSP snippet.

<h2> Server Info </h2>

Server info = <%= application.getServerInfo() %> <br>

Servlet engine version = <%= application.getMajorVersion() %>.<%= application.getMinorVersion() %><br>

Java version = <%= System.getProperty("java.vm.version") %><br>

Also note to activate the EL in your webpages in a JSP2.0 container, your web.xml file must declare itself as being version 2.4 (if you leave it at 2.3 it disables EL for backwards compatibility)

Cheers,

evnafets[/nobr]

evnafetsa at 2007-7-12 21:29:25 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4

Looks like it's due to the engine version the server is using. But i ran evnafets's code, it came out the servlet engine version is 2.4. So is there any other areas that i should look into?

Server info = WebLogic Server 9.0 Sun Jul 3 21:15:00 PDT 2005 598247

Servlet engine version = 2.4

Java version = 1.5.0_03-b07

btw, evnafets, thanks for the code snippet.

Inukaa at 2007-7-12 21:29:25 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...