Hi again,
I was wondering if it is possible to show the syntax used to generate a diagram. What I want is, given the encoded string, I want to see index.jsp. So i can see the syntax used.
Example :
index.jsp?encoded=imfAJKofj0O0
This would show me the diagram and the syntax. In this case ":Ready;"
Looking at the code change is not that hard. The jsp uses getAttribute. And I'm asking for getParameter
getAttribute() is for server-side usage only - you fill the request with attributes that you can use within the same request. For example - you set an attribute in a servlet, and read it from a JSP. Can be used for any object, not just string.
It might be easier to implement the getParameter in the Servlet in the doGet() method.