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]

# 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]
# 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 >
