Why is the URI in my form tags truncated?

In the JSP template, we've specified

and in the struts-config.xml, we've specified

If the page is accessed using a URI like

when the page renders, the html source contains only the application name

As a result, the form is not submitted to the proper URI or ActionMapping.

struts version - 1.1 environment- wsad 5.0

Here are two things you can try,

** <url-pattern>*.do</url-pattern>

without a leading slash.

(Submitted by Rainer Podlas)