Looks like there is a bug with the URL tag.
Test http://localhost:8080/webwork/rss/index.jsp fails.
i.e.
<a href="<webwork:url value="'start.action'"/> returns
"'start.action'". It should return "start.action"
//old
public int doEndTag() throws JspException
{
...
// Add page
link.append(valueAttr);
//suggested fix
public int doEndTag() throws JspException
{
...
// Add page
link.append(value);