cancel
Showing results for 
Search instead for 
Did you mean: 

JSTL/Scriplet bug in JSP Page in WEB AS

Former Member
0 Kudos

[code]

<c:set var="range" value="${DispForm.range}" />

<jsp:usebean id="range" class="java.lang.String"/>

<mytag:disp range='<%= range %>' />

[/code]

Can anybody tell me why the above code does not work in

Web AS 6.40. The input to the

tag <%=range%> is sent as the actual string <%=range%>

and not the value of range which is 10.I have output the

value of <%=range%> in the jsp and it displays '10' on

the page, c:out also displays '10' but when I debug my

tag I see the actual string coming into the range

property in the tag.

here is the discussion from the past on similar issues where the servlet container would throw exceptions when passing values, however in this problem it simply passes the string instead of exploding it's value, do you think it's this same problem with the servlet container?

Thanks for any help you can offer me.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Can some one please comment on this problem?

Is SAP Web Application Server is fully compatible Java Servlets 2.3 and Java Server Pages (JSP) 1.2 spec?