Try    <html:form action="performLogin.do" method="GET">
Notice the '.do'; it has to do with the servlet mapping. You apparently have
*.do mapped to the the Struts ActionServlet, but Jasper doesn't know what to
do with performLogin.

Dave Derry


----- Original Message -----
From: "K Br" <[EMAIL PROTECTED]>


> The husted Struts site recommends that all application
> entry points be given friendly names using the
> global-forwards mapping table. Following this advice,
> I converted
>
>    <html:form action="/login.do" method="GET">
>       //...
>    </html:form>
>
> to
>
>    <html:form action="performLogin" method="GET">
>       //...
>    </html:form>
>
> by adding the global-forwards entry
>
>
>   <global-forwards>
>     <forward name="performLogin" path="/login.do"/>
>     //...
>   </global-forwards>
>
> I thought this made my JSP friendlier but I get the
> Jasper exception:
>
> org.apache.jasper.JasperException: Cannot retrieve mapping for action
/performLogin
>
> What am I missing?
>
> /Kobe


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to