<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE struts-config PUBLIC
          "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"
          "http://struts.apache.org/dtds/struts-config_1_3.dtd">
<struts-config>
	<form-beans></form-beans>
	<global-exceptions></global-exceptions>
	<global-forwards>
		<forward name="howdy" path="/myStart.do" />
	</global-forwards>
	<action-mappings>
		<action path="/myStart" forward="/start.jsp" />
		<action path="/myTest" type="test.TestAction">
			<forward name="success" path="/success.jsp"/>
			<forward name="failure" path="/failure.jsp"/>
		</action>
	</action-mappings>
	<message-resources parameter="StrutsDemoResources" />
</struts-config>


