What is the advantage of using DelegatingActionProxy and injecting action using a xml file...
I am having a project that usese following way to invoke action :
----Code snipet in struts-config.xml----
<action
path="/doLogin"
type="org.springframework.web.struts.DelegatingAct ionProxy"
name="logonForm"
scope="request"
validate="false">
<forward name="success" path="home"/>
</action>
-------------------------------------
----Code snipet in struts-applicationContext.xml----
<bean name="/doLogin"
class="com.sqa.struts.action.LoginAction"singleton ="false">
</bean>
------------------------------------


Reply With Quote