Reputation:
I have OAS version 10.1.3.3 and the applciation that uses jstl 1.1. in tomcat (where it works fine) does nto work fine in OAS.
To use jstl 1.2 requires jsp 2.1 and servlet 2.5. Does OAS 10.1.3.3 support this? I tried to find online for this compatibility but could not confirm it.
Upvotes: 0
Views: 356
Reputation: 16133
You are probably need to configure OC4J to use JSTL:
jakarta-taglibs-standard-1.0.zip
, the file downloded from Apache to a directory, say D:\mydir
.D:\mydir\jakarta-taglibs\jstl-1.0\lib
to <J2EE_HOME>\default-web-app\WEB-INF\lib
. If the directory <J2EE_HOME>\default-web-app\WEB-INF\lib
is not present, create it.JstlSql.jsp
to the directory <J2EE_HOME>\default-web-app\examples\jsp
http://<host-name>:<port>/examples/jsp/JstlSql.jsp
Source: "How to use SQL JSP Standard Library" (google cache).
Upvotes: 0