mskendrick
Jun 6th, 2006, 10:51 AM
Why is it that when I use the new <form:form> tag from the 2.0 M5 release it renders the following incorrect URL?<form method="POST" action="/hcbo-sso-web/WEB-INF/jsp/base64.jsp">
The correct URL should be:<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:<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
The correct URL should be:<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:<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