-
1. Re: jsp:param name attribute Weblogic - JBOSS Migration
rmaucher Mar 13, 2007 10:01 AM (in response to mistapony)For some reason, this is forbidden in the specification (see section 1.14.1).
-
2. Re: jsp:param name attribute Weblogic - JBOSS Migration
mistapony Mar 13, 2007 10:07 AM (in response to mistapony)Yes I realize that this is not part of the spec. Unfortunately it was done this way in weblogic and, weblogic did not complain. I'm looking for a work around because we have some 500 jsp's with this in them. Is there anyway to override the standard jsp taglib or does anyone have any other thoughts.
Thanks -
3. Re: jsp:param name attribute Weblogic - JBOSS Migration
raultb Sep 3, 2008 5:20 PM (in response to mistapony)Have you worked something out?
-
4. Re: jsp:param name attribute Weblogic - JBOSS Migration
biwann Jun 25, 2014 11:07 AM (in response to mistapony)Hello,
I know this is a really old thread, but I am facing the same issue many years later.
Here is how I simply solved the issue :
<%-- Weblogic working code, but not on JBoss --%>
<jsp:include page="/page.do">
<jsp:param name="<%=paramName%>" value="<%=paramValue%>" />
</jsp:include>
<%-- JBoss working code --%>
<% String url = "/page.do?"+paramName + "=" + paramValue ; %>
<jsp:include page="<%= url %>" />
If you have many JSPs, eclipse search & replace feature using regular expressions will really help.
Hope it will help someone like me, having to migrate a really old application