Why is it that when I use the new <form:form> tag from the 2.0 M5 release it renders the following incorrect URL?
Code:
<form method="POST" action="/hcbo-sso-web/WEB-INF/jsp/base64.jsp">
The correct URL should be:
Code:
<form method="post" action="/hcbo-sso-web/base64.htm">
The only way I know of to get the form tag to render correctly is to do the following:
Code:
<c:url value="/base64.htm" var="url" />
<form:form action="${url}">
It seems so unnecessary for me to have to do that. Is this a defect?

Shannon Kendrick