Re: Repost: taglib and rtexprvalue problem/bug

2001-09-11 Thread Craig R. McClanahan
I just answered this in the bug report, but will answer here as well since it's been raised here. Request URIs (including the query string) processed by servlet containers must conform to the requirements of HTTP. In this case, the relevant spec is RFC 2396, Section 3.2, which describes the

Re: Repost: taglib and rtexprvalue problem/bug

2001-09-11 Thread Kevin HaleBoyes
Thanks, I'll make sure I properly encode things from now on. In the mean time, I removed any special characters and have only alphabetic characters in my jsp:param list and I still get: org.apache.jasper.compiler.ParseException: /WEB-INF/jsp/od.jsp(11,53) Attribute from has no value

RE: Repost: taglib and rtexprvalue problem/bug

2001-09-11 Thread Larry Isaacs
Kevin, Assuming your post doesn't have typo's, I think the JSP 1.2 spec still requires the inner quotes to be escaped. I don't recall that changing. Try changing: opf:orderDetail from=%= request.getParameter(from) % to: opf:orderDetail from=%= request.getParameter(\from\) %

RE: Repost: taglib and rtexprvalue problem/bug

2001-09-11 Thread Kevin HaleBoyes
From: Larry Isaacs Assuming your post doesn't have typo's, I think the JSP 1.2 spec still requires the inner quotes to be escaped. I don't recall that changing. Try changing: opf:orderDetail from=%= request.getParameter(from) % to: opf:orderDetail from=%=