Hi all
i have this jsp page with a form
<html:form action="admin-console/engine-path/EditEnginePathAction">
and the corresponding mapping in the struts config is
<action path="/admin-console/engine-path/EditEnginePathAction"
type="adminconsole.editconfig.EditEnginePathAction"
name="EnginePathPropertiesForm">
<forward name="success"
path=".admin-console.editEnginePath"/>
</action>
When i view the source code of the jsp
it shows
<form name="EnginePathPropertiesForm" method="post" action="/Jcacani">
Why is the action mapping to my context path?
Appreciate any advice