I have a java.util.Map in my action (value stack) and I simply want to print it's contents in an HTML table in my JSP showing the key value pairs. However, I am having an issue figuring out the proper syntax.
My initial approach is to iterate over the Maps keys and then during each iteration, call the maps get() method passing the key to it which is not working. Could someone who has done this before show me the struts tag syntax that would accomplish this? Thanks. Marco

