This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
I have just started using CeWolf-1.1.5 in a JSP application to display bar graphs. I was able to come up with a vertical bar graph (single category).
By default, it is Red in color. I tried using SeriesPaintProcessor to change the color of the bars. The J2ee engine is not able to parse the JSP and is giving the error:
The error is: com.sap.engine.services.servlets_jsp.lib.jspparser.exceptions.JspParseException: Cannot parse custom tag with short name [param].
Thanks for your response.
Anyone using SAP's WAS, make a note of this. This is a bug in SAP WAS .The version I am using is 7.0.
I am pretty sure that this bug exists in other versions as well. SAP engine doesn't seem to accept JSP custom tag param values when specified in ""(Double quotes).
It has to be declared as a Java expression as mentioned below.
By changing from value="#66bc29" to value='<%="#66bc29"%>', it worked.
Thanks & Regards,
Amandeep
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35438
9
posted
0
Good to hear you got it resolved. Make sure to file a bug report with SAP. Maybe it's just the '#' character that's confusing it?
Amandeep Aggarwal
Greenhorn
Joined: Jul 11, 2008
Posts: 12
posted
0
I don't think it is the "#" char that is confusing the SAP Java engine as I have seen the same problem with other non- color parameters.
It is the tag "param" as in