The ActionMappings, ActionForms, and ActionServlet are very tightly
coupled, and there is not much advantage in trying to use one without
the other two. 

You can put he Struts bean and logic tags to good use in other projects,
but the html:form tags really require an ActionForm, ActionServlet, and
ActionMappings (from the Struts config) to be useful.

-- Ted Husted, Husted dot Com, Fairport NY USA.
-- Custom Software ~ Technical Services.
-- Tel 716 737-3463.
-- http://www.husted.com/about/struts/

Jerome Jacobsen wrote:
> 
> How can I get
>    <html:form name="myform" action="index.jsp">
> to produce
>    <form name="myform" action="index.jsp">
> instead of
>    <form name="myform" action="/index.jsp">
> ???
> 
> I'm starting to use Struts in my project which has its own controller.  All
> of my JSPs use relative URLs to this controller. I do not want to migrate to
> the ActionServlet yet.  I have no struts-config.xml file (and I don't want
> one until I convert to ActionServlet).
> 
> -Jerome

Reply via email to